Mercurial > public > hwos_code
annotate src/menu_tree.asm @ 505:bef07a837a60
BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
author | heinrichsweikamp |
---|---|
date | Mon, 26 Jun 2017 12:30:54 +0200 |
parents | 0910c227018f |
children | 4e6f5c36f4cc |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File menu_tree.asm | |
4 ; | |
275 | 5 ; OSTC menus |
0 | 6 ; |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-07-11 : [jDG] Creation. | |
11 | |
275 | 12 #include "hwos.inc" ; Mandatory header |
0 | 13 #include "gaslist.inc" |
14 #include "menu_processor.inc" | |
505
bef07a837a60
BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents:
502
diff
changeset
|
15 #include "start.inc" |
bef07a837a60
BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents:
502
diff
changeset
|
16 #include "comm.inc" |
bef07a837a60
BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents:
502
diff
changeset
|
17 #include "logbook.inc" |
bef07a837a60
BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents:
502
diff
changeset
|
18 #include "tft.inc" |
bef07a837a60
BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents:
502
diff
changeset
|
19 #include "eeprom_rs232.inc" |
bef07a837a60
BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents:
502
diff
changeset
|
20 #include "external_flash.inc" |
bef07a837a60
BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents:
502
diff
changeset
|
21 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c |
bef07a837a60
BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents:
502
diff
changeset
|
22 #include "isr.inc" |
bef07a837a60
BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents:
502
diff
changeset
|
23 #include "ghostwriter.inc" |
0 | 24 #include "adc_lightsensor.inc" |
355 | 25 #include "wait.inc" |
457 | 26 #include "i2c.inc" |
0 | 27 |
174
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
28 CBLOCK tmp+0x40 ; Keep space for menu processor |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
29 gaslist_gas ; Check ram position in gaslist.asm, too! |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
30 ENDC |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
31 |
0 | 32 gui CODE |
33 ;============================================================================= | |
34 ; Main Menu | |
66
00636132cca6
BUGFIX: Maintain last selected customview in surface mode
heinrichsweikamp
parents:
64
diff
changeset
|
35 global do_main_menu,do_main_menu2 |
0 | 36 do_main_menu: |
39
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
23
diff
changeset
|
37 movff menupos3,customview_surfmode; save last customview |
66
00636132cca6
BUGFIX: Maintain last selected customview in surface mode
heinrichsweikamp
parents:
64
diff
changeset
|
38 do_main_menu2: |
502
0910c227018f
BUGFIX: PSCR mode showed bailout gaslist instead of diluent gaslist
heinrichsweikamp
parents:
481
diff
changeset
|
39 call TFT_boot |
0 | 40 bcf sleepmode ; for timeout |
41 call menu_processor_reset ; restart from first icon. | |
42 | |
43 do_continue_main_menu: | |
428 | 44 rcall menu_tree_double_pop ; drop exit line and back to last line |
0 | 45 |
46 extern do_demo_divemode, restart | |
47 MENU_BEGIN tMainMenu, .7 | |
48 MENU_CALL tLogbook, logbook | |
49 MENU_CALL tGasSetup, do_gas_menu | |
50 MENU_CALL tCCRSetup, do_ccr_menu | |
51 MENU_CALL tPlan, do_planner_menu_reset | |
52 MENU_CALL tDiveModeMenu, do_divemode_menu | |
53 MENU_CALL tSystSets, do_settings_menu | |
54 MENU_CALL tExit, restart | |
55 MENU_END | |
56 | |
57 do_info_menu: | |
453
b4f28ab23b87
NEW: Show Uptime (Time since last firmware boot) in information menu
heinrichsweikamp
parents:
451
diff
changeset
|
58 MENU_BEGIN tInfoMenu, .6 |
0 | 59 MENU_DYNAMIC info_menu_serial, 0 |
60 MENU_DYNAMIC info_menu_firmware, 0 | |
61 MENU_DYNAMIC info_menu_total_dives, 0 | |
62 | 62 MENU_DYNAMIC info_menu_battery_volts,0 |
453
b4f28ab23b87
NEW: Show Uptime (Time since last firmware boot) in information menu
heinrichsweikamp
parents:
451
diff
changeset
|
63 MENU_DYNAMIC info_menu_uptime,0 |
0 | 64 MENU_CALL tExit, do_return_settings |
65 MENU_END | |
66 | |
67 ;============================================================================= | |
68 ; CCR Setup | |
69 | |
70 return_ccr_menu: | |
428 | 71 rcall menu_tree_double_pop ; drop exit line and back to last line |
0 | 72 |
73 do_ccr_menu: | |
113 | 74 bcf menu_show_sensors ; Clear flag |
75 bcf menu_show_sensors2 ; Clear flag | |
236 | 76 btfsc analog_o2_input |
240 | 77 bra do_ccr_menu_cR |
78 btfss optical_input | |
79 bra do_ccr_menu_ostc2 | |
80 | |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
81 MENU_BEGIN tCCRSetup, .6 ; OSTC3 menu |
174
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
82 MENU_OPTION tCCRMode, oCCRMode, 0 |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
83 MENU_CALL tCCRSensor, do_ccr_sensor |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
84 MENU_CALL tDiluentSetup, do_diluent_setup |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
85 MENU_CALL tFixedSetpoints, do_fixed_setpoints |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
86 MENU_CALL tPSCRMenu, do_PSCR_menu |
174
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
87 MENU_CALL tExit, do_continue_main_menu |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
88 MENU_END |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
89 |
240 | 90 do_ccr_menu_cR: ; cR menu |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
91 MENU_BEGIN tCCRSetup, .7 |
0 | 92 MENU_OPTION tCCRMode, oCCRMode, 0 |
93 MENU_CALL tCCRSensor, do_ccr_sensor | |
113 | 94 MENU_CALL tCalibrateMenu, do_calibrate_menu |
0 | 95 MENU_CALL tDiluentSetup, do_diluent_setup |
96 MENU_CALL tFixedSetpoints, do_fixed_setpoints | |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
97 MENU_CALL tPSCRMenu, do_PSCR_menu |
0 | 98 MENU_CALL tExit, do_continue_main_menu |
99 MENU_END | |
100 | |
240 | 101 do_ccr_menu_ostc2: |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
102 MENU_BEGIN tCCRSetup, .5 ; ostc2 menu |
359 | 103 MENU_OPTION tCCRMode, oCCRMode, 0 |
240 | 104 MENU_CALL tDiluentSetup, do_diluent_setup |
105 MENU_CALL tFixedSetpoints, do_fixed_setpoints | |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
106 MENU_CALL tPSCRMenu, do_PSCR_menu |
240 | 107 MENU_CALL tExit, do_continue_main_menu |
108 MENU_END | |
109 | |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
110 do_PSCR_menu: |
481 | 111 MENU_BEGIN tPSCRMenu, .3 ; PSCR Menu |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
112 MENU_OPTION tPSCR_O2_drop, oPSCR_drop, 0 |
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
113 MENU_OPTION tPSCR_lungratio,oPSCR_lungratio, 0 |
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
114 MENU_CALL tExit, do_ccr_menu |
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
115 MENU_END |
240 | 116 |
113 | 117 do_calibrate_menu: |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
174
diff
changeset
|
118 call enable_ir_s8 ; Enable IR/S8-Port |
113 | 119 bsf menu_show_sensors2 ; Set flag |
120 do_calibrate_menu2: | |
121 MENU_BEGIN tCalibrateMenu, .6 | |
122 MENU_CALL tDiveHudMask1, 0 | |
123 MENU_CALL tDiveHudMask2, 0 | |
124 MENU_CALL tDiveHudMask3, 0 | |
125 MENU_OPTION tCalibrationGas,oCalGasO2, 0 | |
126 MENU_CALL tCalibrate, do_calibrate_mix | |
127 MENU_CALL tExit, return_ccr_menu | |
128 MENU_END | |
129 | |
130 do_calibrate_mix: | |
131 extern calibrate_mix | |
132 call calibrate_mix ; Calibrate with opt_calibration_O2_ratio, also calibrate S8 HUD if connected | |
355 | 133 WAITMS d'250' ; Wait for HUD v3 |
113 | 134 goto restart ; Restart into surface mode |
135 | |
0 | 136 do_ccr_sensor: |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
174
diff
changeset
|
137 call enable_ir_s8 ; Enable IR/S8-Port |
0 | 138 bsf menu_show_sensors ; Set flag |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
144
diff
changeset
|
139 MENU_BEGIN tCCRSensor, .5 |
0 | 140 MENU_CALL tDiveHudMask1, 0 |
141 MENU_CALL tDiveHudMask2, 0 | |
142 MENU_CALL tDiveHudMask3, 0 | |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
144
diff
changeset
|
143 MENU_OPTION tSensorFallback,oSensorFallback, 0 |
0 | 144 MENU_CALL tExit, return_ccr_menu |
145 MENU_END | |
146 | |
147 do_diluent_setup: | |
148 bsf ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10") | |
139 | 149 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint |
0 | 150 call gaslist_cleanup_list ; Takes care that only one gas can be first and first has 0m change depth |
151 MENU_BEGIN tDiluentSetup, .6 | |
152 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
153 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
154 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
155 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
156 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
157 MENU_CALL tExit, return_ccr_menu | |
158 MENU_END | |
159 | |
160 do_return_fixed_setpoints: | |
428 | 161 rcall menu_tree_double_pop ; drop exit line and back to last line |
0 | 162 |
163 do_fixed_setpoints: | |
139 | 164 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint |
0 | 165 MENU_BEGIN tFixedSetpoints, .6 |
166 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
167 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
168 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
169 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
170 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
171 MENU_CALL tExit, return_ccr_menu | |
172 MENU_END | |
173 | |
174 do_edit_sp_menu: | |
175 call gaslist_setSP ; Save current item. | |
176 MENU_BEGIN tFixedSetpoints, .5 | |
177 MENU_DYNAMIC gaslist_strcat_setpoint_0,0 | |
178 MENU_CALL tSPPlus, gaslist_spplus | |
179 MENU_CALL tDepthPlus, gaslist_spdepthplus | |
180 MENU_CALL tDepthMinus, gaslist_spdepthminus | |
181 MENU_CALL tExit, do_return_fixed_setpoints | |
182 MENU_END | |
183 | |
184 ;============================================================================= | |
185 ; OC Gas Setup | |
186 | |
187 return_gas_menu: | |
428 | 188 rcall menu_tree_double_pop ; drop exit line and back to last line |
0 | 189 |
190 btfsc ccr_diluent_setup ; Return to CCR-Menu? | |
191 bra do_diluent_setup ; Yes. | |
192 do_gas_menu: | |
193 bcf ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10") | |
139 | 194 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint |
0 | 195 call gaslist_cleanup_list ; Takes care that only one gas can be first and first has 0m change depth |
196 MENU_BEGIN tGaslist, .6 | |
197 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
198 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
199 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
200 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
201 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
202 MENU_CALL tExit, do_continue_main_menu | |
203 MENU_END | |
204 | |
205 return_gas_depth: | |
428 | 206 rcall menu_tree_double_pop ; drop exit line and back to last line |
0 | 207 bra do_edit_gas_menu_1 |
208 | |
209 do_edit_gas_menu: | |
210 call gaslist_setgas ; Save current item. | |
211 do_edit_gas_menu_1: ; Keep current gas. | |
212 MENU_BEGIN tGasEdit, .6 | |
213 MENU_DYNAMIC gaslist_gastitle, 0 | |
214 MENU_DYNAMIC gaslist_MOD_END, 0 | |
215 MENU_DYNAMIC gaslist_show_type, gaslist_toggle_type | |
216 MENU_CALL tSetup_mix, do_setup_mix | |
217 MENU_CALL tGasDepth, do_gas_depth_menu | |
218 MENU_CALL tExit, return_gas_menu | |
219 MENU_END | |
220 | |
221 do_setup_mix: | |
222 MENU_BEGIN tGasEdit, .7 | |
223 MENU_DYNAMIC gaslist_gastitle, 0 | |
224 MENU_DYNAMIC gaslist_MOD_END, 0 | |
225 MENU_CALL tO2Plus, gaslist_pO2 | |
226 MENU_CALL tO2Minus, gaslist_mO2 | |
227 MENU_CALL tHePlus, gaslist_pHe | |
228 MENU_CALL tHeMinus, gaslist_mHe | |
229 MENU_CALL tExit, return_gas_depth | |
230 MENU_END | |
231 | |
428 | 232 menu_tree_double_pop: |
233 call menu_processor_pop ; drop exit line. | |
234 goto menu_processor_pop ; back to last gas and return | |
235 | |
236 | |
0 | 237 global do_gas_depth_menu |
238 do_gas_depth_menu: | |
174
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
239 movff gaslist_gas,WREG |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
240 lfsr FSR1,opt_gas_type ; Read opt_gas_type[WREG] |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
241 movff PLUSW1,lo ; Used as temp |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
242 movlw .3 ; 3=Deco |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
243 btfsc ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10") |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
244 movlw .2 ; 2=Normal |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
245 cpfseq lo |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
246 bra return_gas_depth ; Non-Deco gas or "Normal" Diluent, Return! |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
247 |
154
afa31c815f24
NEW: Show ppO2 for change depth during gas setup
heinrichsweikamp
parents:
148
diff
changeset
|
248 MENU_BEGIN tGasEdit, .7 |
0 | 249 MENU_DYNAMIC gaslist_gastitle, 0 |
250 MENU_DYNAMIC gaslist_MOD_END, 0 | |
154
afa31c815f24
NEW: Show ppO2 for change depth during gas setup
heinrichsweikamp
parents:
148
diff
changeset
|
251 MENU_DYNAMIC gaslist_ppo2, 0 ; ppO2 at change depth |
0 | 252 MENU_CALL tDepthPlus, gaslist_pDepth |
253 MENU_CALL tDepthMinus, gaslist_mDepth | |
254 MENU_DYNAMIC gaslist_reset_mod_title,gaslist_reset_mod | |
255 MENU_CALL tExit, return_gas_depth | |
256 MENU_END | |
257 | |
258 ;============================================================================= | |
259 ; Simulator menus | |
260 | |
261 global do_planner_menu | |
262 | |
263 do_planner_menu_reset: | |
264 extern option_save_all | |
265 call option_save_all | |
266 ;---- Reset dive time/depth to default values | |
267 extern option_reset | |
268 lfsr FSR0,odiveInterval | |
269 call option_reset | |
270 lfsr FSR0,obottomTime | |
271 call option_reset | |
272 lfsr FSR0,obottomDepth | |
273 call option_reset | |
274 | |
275 do_planner_menu: | |
276 extern do_demo_planner | |
298
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
277 MENU_BEGIN tPlan, .7 |
0 | 278 MENU_CALL tInter, do_demo_divemode |
279 MENU_OPTION tIntvl, odiveInterval, 0 | |
280 MENU_OPTION tBtTm, obottomTime, 0 | |
281 MENU_OPTION tMxDep, obottomDepth, 0 | |
282 MENU_CALL tDeco, do_demo_planner | |
298
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
283 MENU_CALL tSystSets, do_planner_config |
0 | 284 MENU_CALL tExit, do_continue_main_menu |
285 MENU_END | |
286 | |
298
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
287 do_planner_config: |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
288 MENU_BEGIN tPlan, .3 |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
289 MENU_OPTION tSetBotUse, obottom_usage, 0 |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
290 MENU_OPTION tSetDecoUse, odeco_usage, 0 |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
291 MENU_CALL tExit, do_planner_menu |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
292 MENU_END |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
293 |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
294 |
0 | 295 ;============================================================================= |
296 ; Divemode menu | |
297 | |
298 do_return_divemode_menu: | |
428 | 299 rcall menu_tree_double_pop ; drop exit line and back to last line |
0 | 300 |
301 do_divemode_menu: | |
302 MENU_BEGIN tDiveModeMenu, .7 | |
303 MENU_OPTION tDvMode, oDiveMode, 0 | |
304 MENU_OPTION tDkMode, oDecoMode, 0 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
305 MENU_CALL tppO2settings, do_ppo2_menu |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
306 MENU_OPTION tsafetystopmenu,oSafetyStop, 0 |
0 | 307 MENU_OPTION tFTTSMenu, oExtraTime,0 |
308 MENU_CALL tDecoparameters, do_decoparameters_menu | |
309 MENU_CALL tExit, do_continue_main_menu | |
310 MENU_END | |
311 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
312 do_ppo2_menu: |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
313 MENU_BEGIN tppO2settings, .4 |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
314 MENU_DYNAMIC divesets_ppo2_max, do_toggle_ppo2_max |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
315 MENU_DYNAMIC divesets_ppo2_min, do_toggle_ppo2_min |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
316 MENU_OPTION tShowppO2, oShowppO2, 0 |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
317 MENU_CALL tExit, do_return_divemode_menu |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
318 MENU_END |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
319 |
0 | 320 do_return_decoparameters_menu: |
428 | 321 rcall menu_tree_double_pop ; drop exit line and back to last line |
0 | 322 do_decoparameters_menu: |
323 MENU_BEGIN tDecoparameters, .7 | |
324 MENU_OPTION tGF_low, oGF_low, 0 | |
325 MENU_OPTION tGF_high, oGF_high, 0 | |
326 MENU_CALL taGFMenu, do_aGF_menu | |
327 MENU_OPTION tSaturationMult,osatmult, 0 | |
328 MENU_OPTION tDesaturationMult,odesatmult,0 | |
329 MENU_OPTION tLastDecostop,oLastDeco, 0 | |
330 MENU_CALL tExit, do_return_divemode_menu | |
331 MENU_END | |
332 | |
333 do_aGF_menu: | |
334 MENU_BEGIN taGFMenu, .4 | |
335 MENU_OPTION taGF_enable,oEnable_aGF, 0 | |
336 MENU_OPTION taGF_low, oaGF_low, 0 | |
337 MENU_OPTION taGF_high, oaGF_high, 0 | |
338 MENU_CALL tExit, do_return_decoparameters_menu | |
339 MENU_END | |
340 ;============================================================================= | |
341 ; Setup Menu | |
342 | |
343 do_return_settings: | |
344 bcf settime_setdate ; Clear flag | |
428 | 345 rcall menu_tree_double_pop ; drop exit line and back to last line |
0 | 346 |
347 extern compass_calibration_loop | |
348 do_settings_menu: | |
345 | 349 btfsc ble_available ; ble available |
350 bra do_settings_menu_ble ; Yes. | |
351 MENU_BEGIN tSystSets, .6 | |
0 | 352 MENU_CALL tInfoMenu, do_info_menu |
353 MENU_CALL tSetTimeDate, do_date_time_menu | |
354 MENU_CALL tDispSets, do_dispsets_menu | |
355 MENU_OPTION tLanguage, oLanguage, 0 | |
155
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
356 MENU_CALL tMore, do_settings_menu_more |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
357 MENU_CALL tExit, do_continue_main_menu |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
358 MENU_END |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
359 |
345 | 360 do_settings_menu_ble: |
361 MENU_BEGIN tSystSets, .7 | |
362 MENU_CALL tInfoMenu, do_info_menu | |
363 MENU_CALL tBleTitle, comm_mode0 | |
364 MENU_CALL tSetTimeDate, do_date_time_menu | |
365 MENU_CALL tDispSets, do_dispsets_menu | |
366 MENU_OPTION tLanguage, oLanguage, 0 | |
367 MENU_CALL tMore, do_settings_menu_more | |
368 MENU_CALL tExit, do_continue_main_menu | |
369 MENU_END | |
326
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
370 |
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
371 do_return_settings_more: |
428 | 372 rcall menu_tree_double_pop ; drop exit line and back to last line |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
373 |
155
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
374 do_settings_menu_more: |
448 | 375 btfsc battery_gauge_available ; piezo buttons available |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
243
diff
changeset
|
376 bra do_settings_menu_more_piezo |
243 | 377 btfsc ble_available ; ble available |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
243
diff
changeset
|
378 bra do_settings_menu_more_ostc3p |
345 | 379 MENU_BEGIN tSystSets, .7 |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
380 MENU_CALL tCompassMenu, do_compass_menu |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
381 MENU_CALL tLogOffset, do_log_offset_menu |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
382 MENU_OPTION tUnits, oUnits, 0 |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
383 MENU_OPTION tSamplingrate,oSamplingRate,0 |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
384 MENU_OPTION tDvSalinity,oDiveSalinity, 0 |
345 | 385 MENU_CALL tResetMenu, do_reset_menu |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
386 MENU_CALL tExit, do_return_settings |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
387 MENU_END |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
388 |
375
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
389 do_settings_menu_more_piezo_exit: |
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
390 call TFT_ClearScreen |
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
391 extern piezo_config |
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
392 call piezo_config ; Configure buttons |
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
393 |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
243
diff
changeset
|
394 do_settings_menu_more_piezo: |
218 | 395 MENU_BEGIN tSystSets, .7 |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
396 MENU_CALL tCompassMenu, do_compass_menu |
155
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
397 MENU_CALL tLogOffset, do_log_offset_menu |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
398 MENU_OPTION tUnits, oUnits, 0 |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
399 MENU_OPTION tSamplingrate,oSamplingRate,0 |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
400 MENU_OPTION tDvSalinity,oDiveSalinity, 0 |
345 | 401 MENU_CALL tMore, do_settings_piezo_menu |
155
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
402 MENU_CALL tExit, do_return_settings |
0 | 403 MENU_END |
404 | |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
405 extern comm_mode0 |
243 | 406 |
345 | 407 do_settings_piezo_menu: |
408 ; Menu with features only available in piezo button hardware | |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
409 MENU_BEGIN tSystSets, .4 |
345 | 410 MENU_CALL tResetMenu, do_reset_menu |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
411 MENU_OPTION tButtonleft,ocR_button_left ,0 ; left button sensitivity |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
412 MENU_OPTION tButtonright,ocR_button_right,0 ; right button sensitivity |
375
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
413 MENU_CALL tExit, do_settings_menu_more_piezo_exit |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
414 MENU_END |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
415 |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
243
diff
changeset
|
416 do_settings_menu_more_ostc3p: ; Menu with BLE feature |
243 | 417 MENU_BEGIN tSystSets, .7 |
418 MENU_CALL tCompassMenu, do_compass_menu | |
419 MENU_CALL tLogOffset, do_log_offset_menu | |
420 MENU_OPTION tUnits, oUnits, 0 | |
421 MENU_OPTION tSamplingrate,oSamplingRate,0 | |
422 MENU_OPTION tDvSalinity,oDiveSalinity, 0 | |
345 | 423 MENU_CALL tResetMenu, do_reset_menu |
243 | 424 MENU_CALL tExit, do_return_settings |
425 MENU_END | |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
426 |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
427 do_compass_menu: |
90
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
78
diff
changeset
|
428 MENU_BEGIN tSystSets, .2 |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
429 MENU_CALL tCompassMenu, compass_calibration_loop |
90
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
78
diff
changeset
|
430 ; MENU_OPTION tCompassGain, oCompassGain, 0 |
326
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
431 MENU_CALL tExit, do_return_settings_more |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
432 MENU_END |
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
433 |
0 | 434 ;============================================================================= |
435 ; Reset and confirmation menu. | |
436 | |
437 do_reset_menu: | |
63 | 438 MENU_BEGIN tResetMenu, .6 |
0 | 439 MENU_CALL tExit, do_return_settings |
440 MENU_CALL tReboot, do_reset_menu2 ; Confirm | |
441 MENU_CALL tResetDeco, do_reset_menu3 ; Confirm | |
442 MENU_CALL tResetSettings, do_reset_menu4 ; Confirm | |
63 | 443 MENU_CALL tResetLogbook, do_reset_menu5 ; Confirm |
0 | 444 MENU_CALL tResetBattery, new_battery_menu ; New Battery submenu |
445 MENU_END | |
446 | |
447 do_reset_menu2: | |
448 MENU_BEGIN tResetMenu2, .2 | |
449 MENU_CALL tAbort, do_continue_menu_3stack | |
450 MENU_CALL tReboot, do_reboot ; Reboot | |
451 MENU_END | |
452 | |
453 do_reset_menu3: | |
454 MENU_BEGIN tResetMenu2, .2 | |
455 MENU_CALL tAbort, do_continue_menu_3stack | |
456 MENU_CALL tResetDeco, do_reset_deco ; Reset Deco | |
457 MENU_END | |
458 | |
459 do_reset_menu4: | |
460 MENU_BEGIN tResetMenu2, .2 | |
461 MENU_CALL tAbort, do_continue_menu_3stack | |
462 MENU_CALL tResetSettings, do_reset_settings ; Reset all settings | |
463 MENU_END | |
464 | |
63 | 465 do_reset_menu5: |
466 MENU_BEGIN tResetMenu2, .2 | |
467 MENU_CALL tAbort, do_continue_menu_3stack | |
468 MENU_CALL tResetLogbook, do_reset_logbook ; Reset logbook | |
469 MENU_END | |
470 | |
471 do_reset_logbook: | |
472 clrf EEADRH ; Make sure to select eeprom bank 0 | |
473 clrf EEDATA | |
78
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
474 read_int_eeprom .2 |
396
61984f91174a
place total dives backup counter in eeprom 16:17
heinrichsweikamp
parents:
375
diff
changeset
|
475 write_int_eeprom .16 |
78
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
476 read_int_eeprom .3 |
396
61984f91174a
place total dives backup counter in eeprom 16:17
heinrichsweikamp
parents:
375
diff
changeset
|
477 write_int_eeprom .17 ; Copy number of dives |
144 | 478 clrf EEDATA |
78
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
479 write_int_eeprom .2 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
480 write_int_eeprom .3 ; Clear total dives |
63 | 481 write_int_eeprom .4 |
482 write_int_eeprom .5 | |
483 write_int_eeprom .6 ; Reset logbook pointers | |
484 call ext_flash_erase_logbook ; And complete logbook (!) | |
485 goto do_continue_main_menu ; back to menu | |
486 | |
0 | 487 |
488 do_reset_deco: | |
489 movlw d'79' ; 79% N2 | |
490 movff WREG,char_I_N2_ratio | |
491 movlw d'0' | |
492 movff WREG,char_I_step_is_1min ; 2 second deco mode | |
493 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy for deco routine | |
494 movff int_I_pres_respiration+0,int_I_pres_surface+0 ; copy for desat routine | |
495 movff int_I_pres_respiration+1,int_I_pres_surface+1 | |
496 | |
497 extern deco_reset | |
498 call deco_reset | |
499 call deco_calc_desaturation_time ; calculate desaturation time | |
500 banksel common | |
501 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode | |
502 banksel common | |
503 clrf nofly_time+0 ; Reset NoFly | |
504 clrf nofly_time+1 | |
505 clrf desaturation_time+0 ; Reset Desat | |
506 clrf desaturation_time+1 | |
507 goto do_return_settings ; back to menu | |
508 | |
509 do_reset_settings: | |
470
81faca166e1b
minor: clear screen while resetting settings
heinrichsweikamp
parents:
464
diff
changeset
|
510 call TFT_ClearScreen ; Clear screen |
139 | 511 banksel common |
0 | 512 extern option_reset_all |
513 call option_reset_all ; Reset all options to factory default. | |
76 | 514 goto restart ; Restart into surfacemode |
0 | 515 |
516 do_continue_menu_3stack: ; Return three levels deep | |
517 call menu_processor_pop | |
518 goto do_return_settings | |
519 | |
520 do_reboot: | |
521 call ext_flash_enable_protection ; Enables write protection | |
522 reset | |
523 | |
524 | |
525 do_date_time_menu: | |
526 MENU_BEGIN tSetTimeDate, .4 | |
527 MENU_CALL tSetTime, do_time_menu | |
528 MENU_CALL tSetDate, do_date_menu | |
529 MENU_OPTION tDateFormat,oDateFormat, 0 | |
530 MENU_CALL tExit, do_return_settings | |
531 MENU_END | |
532 | |
533 do_date_menu: | |
534 bsf settime_setdate | |
535 MENU_BEGIN tSetDate, .4 | |
536 MENU_OPTION tSetDay, oSetDay, 0 | |
50 | 537 MENU_OPTION tSetMonth, oSetMonth, 0 |
0 | 538 MENU_OPTION tSetYear, oSetYear, 0 |
539 MENU_CALL tExit, do_continue_menu_3stack | |
540 MENU_END | |
541 | |
542 | |
543 do_reset_seconds: | |
544 clrf secs | |
545 extern rtc_set_rtc | |
546 call rtc_set_rtc ; writes mins,sec,hours,day,month and year to rtc module | |
547 do_time_menu: | |
548 bsf settime_setdate | |
549 MENU_BEGIN tSetTime, .4 | |
550 MENU_OPTION tSetHours, oSetHours, 0 | |
551 MENU_OPTION tSetMinutes,oSetMinutes, 0 | |
552 MENU_CALL tSetSeconds, do_reset_seconds | |
553 MENU_CALL tExit, do_continue_menu_3stack | |
554 MENU_END | |
555 | |
556 | |
557 do_toggle_ppo2_max: ; add 0.1bar, with hard-coded max. | |
558 movff opt_ppO2_max,lo ; banksafe | |
559 movlw .10 | |
560 addwf lo,F | |
561 movlw ppo2_highest_setting | |
562 cpfsgt lo | |
563 bra do_toggle_ppo2_max2 | |
564 movlw .120 | |
565 movwf lo | |
566 do_toggle_ppo2_max2: | |
567 movff lo,opt_ppO2_max | |
568 return | |
569 | |
570 do_toggle_ppo2_min: ; sub 0.1bar, with hard-coded min. | |
571 movff opt_ppO2_min,lo ; banksafe | |
572 incf lo,F | |
573 movlw .21 | |
574 cpfsgt lo | |
575 bra do_toggle_ppo2_min2 | |
576 movlw ppo2_lowest_setting | |
577 movwf lo | |
578 do_toggle_ppo2_min2: | |
579 movff lo,opt_ppO2_min | |
580 return | |
581 | |
582 | |
583 ; Logbook offset sub-menu | |
584 do_log_offset_menu: | |
585 MENU_BEGIN tLogOffset, .6 | |
586 MENU_DYNAMIC TFT_LogOffset_Logtitle, 0 | |
587 MENU_CALL tLogOffsetp1, do_logoffset_plus1 | |
588 MENU_CALL tLogOffsetp10, do_logoffset_plus10 | |
589 MENU_CALL tLogOffsetm1, do_logoffset_minus1 | |
590 MENU_CALL tLogOffsetm10, do_logoffset_minus10 | |
326
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
591 MENU_CALL tExit, do_return_settings_more |
0 | 592 MENU_END |
593 | |
594 | |
595 do_logoffset_minus1: | |
596 call do_logoffset_common_read ; Read into lo:hi | |
597 movlw d'1' | |
598 subwf lo | |
599 movlw d'0' | |
600 subwfb hi | |
601 btfss hi,7 ; <0? | |
602 goto do_logoffset_common_write ; Store and return | |
603 clrf lo | |
604 clrf hi | |
605 goto do_logoffset_common_write ; Store and return | |
606 | |
607 do_logoffset_minus10: | |
608 call do_logoffset_common_read ; Read into lo:hi | |
609 movlw d'10' | |
610 subwf lo | |
611 movlw d'0' | |
612 subwfb hi | |
613 btfss hi,7 ; <0? | |
614 goto do_logoffset_common_write ; Store and return | |
615 clrf lo | |
616 clrf hi | |
617 goto do_logoffset_common_write ; Store and return | |
618 | |
619 do_logoffset_plus1: | |
620 call do_logoffset_common_read ; Read into lo:hi | |
148 | 621 infsnz lo,F |
622 incf hi,F | |
0 | 623 goto do_logoffset_common_write ; Store and return |
624 | |
625 do_logoffset_plus10: | |
626 call do_logoffset_common_read ; Read into lo:hi | |
627 movlw d'10' | |
628 addwf lo | |
629 movlw d'0' | |
630 addwfc hi | |
631 goto do_logoffset_common_write ; Store and return | |
632 | |
633 do_dispsets_menu_3stack: | |
50 | 634 bcf in_color_menu |
428 | 635 rcall menu_tree_double_pop ; drop exit line and back to last line |
0 | 636 |
637 do_dispsets_menu: | |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
638 MENU_BEGIN tDispSets, .5 |
303
9b1b0b32e7d5
Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents:
298
diff
changeset
|
639 MENU_OPTION tBright, oBrightness, 0 |
9b1b0b32e7d5
Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents:
298
diff
changeset
|
640 MENU_CALL tColorScheme, do_color_scheme |
9b1b0b32e7d5
Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents:
298
diff
changeset
|
641 MENU_OPTION tFlip, oFlipScreen, 0 |
335
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
642 MENU_CALL tMore, do_dispsets_menu_more |
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
643 MENU_CALL tExit, do_return_settings |
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
644 MENU_END |
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
645 |
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
646 do_dispsets_menu_more: |
448 | 647 MENU_BEGIN tDispSets, .5 |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
648 MENU_OPTION tMODwarning, oMODwarning, 0 |
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
649 MENU_OPTION tVSItext2, oVSItextv2, 0 |
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
650 MENU_OPTION tVSIgraph, oVSIgraph, 0 |
448 | 651 MENU_OPTION tTimeoutDive, oDiveTimeout, 0 |
335
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
652 MENU_CALL tExit, do_dispsets_menu_3stack |
0 | 653 MENU_END |
654 | |
50 | 655 extern oColorSetDive |
656 do_color_scheme: | |
657 bsf in_color_menu | |
658 MENU_BEGIN tColorScheme, .2 | |
659 MENU_OPTION tColorSetDive,oColorSetDive, 0 | |
660 MENU_CALL tExit, do_dispsets_menu_3stack | |
661 MENU_END | |
662 | |
663 | |
0 | 664 ;============================================================================= |
665 | |
666 global new_battery_menu | |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
667 extern surfloop |
0 | 668 new_battery_menu: |
669 bsf enable_screen_dumps ; To prevent exiting into COMM mode immediately | |
670 call TFT_boot ; Initialize TFT (includes clear screen) | |
671 call TFT_Display_FadeIn ; Show splash | |
672 movlw .100 | |
673 movwf batt_percent ; make sure to reset batt_percent | |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
674 |
0 | 675 ; Default (In cases of timeout or USB): Use old battery |
676 clrf EEADRH | |
677 read_int_eeprom 0x07 | |
678 movff EEDATA,battery_gauge+0 | |
679 read_int_eeprom 0x08 | |
680 movff EEDATA,battery_gauge+1 | |
681 read_int_eeprom 0x09 | |
682 movff EEDATA,battery_gauge+2 | |
683 read_int_eeprom 0x0A | |
684 movff EEDATA,battery_gauge+3 | |
685 read_int_eeprom 0x0B | |
686 movff EEDATA,battery_gauge+4 | |
687 read_int_eeprom 0x0C | |
688 movff EEDATA,battery_gauge+5 | |
689 | |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
690 call menu_processor_reset ; restart from first icon. |
474 | 691 |
692 MENU_BEGIN tNewBattTitle, .1 | |
693 MENU_CALL tEnter, new_battery_menu2 | |
694 MENU_END | |
695 | |
696 new_battery_menu2: | |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
697 ; hardware_flag: |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
698 ; 3: 0x0A or 0x13 (2016) |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
699 ; cR: 0x05 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
700 ; 2 with BLE: 0x11 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
701 ; Sport: 0x12 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
702 ; 3 with BLE: 0x1A |
76 | 703 |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
704 movlw 0x0A |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
705 cpfseq hardware_flag |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
706 bra $+4 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
707 bra menu_new_battery_AA |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
708 movlw 0x13 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
709 cpfseq hardware_flag |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
710 bra $+4 |
474 | 711 bra menu_new_battery_AA_16650 |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
712 movlw 0x12 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
713 cpfseq hardware_flag |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
714 bra $+4 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
715 bra menu_new_battery_AA |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
716 movlw 0x1A |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
717 cpfseq hardware_flag |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
718 bra $+4 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
719 bra menu_new_battery_AA |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
720 movlw 0x11 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
721 cpfseq hardware_flag |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
722 bra $+4 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
723 bra menu_new_battery_18650 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
724 movlw 0x05 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
725 cpfseq hardware_flag |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
726 bra $+4 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
727 bra menu_new_battery_18650 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
728 bra use_old_batteries ; any unsupported value |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
729 |
474 | 730 menu_new_battery_AA_16650: |
731 MENU_BEGIN tNewBattTitle, .5 | |
732 MENU_CALL tNewBattOld, use_old_batteries | |
733 MENU_CALL tNewBattNew36, use_new_36V_batteries | |
734 MENU_CALL tNewBattNew15, use_new_15V_batteries | |
735 MENU_CALL tNewBattAccu, use_36V_rechargeable | |
736 MENU_CALL tNew16650, use_16650_battery | |
737 MENU_END | |
738 | |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
739 menu_new_battery_AA: |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
740 MENU_BEGIN tNewBattTitle, .4 |
448 | 741 MENU_CALL tNewBattOld, use_old_batteries |
0 | 742 MENU_CALL tNewBattNew36, use_new_36V_batteries |
743 MENU_CALL tNewBattNew15, use_new_15V_batteries | |
448 | 744 MENU_CALL tNewBattAccu, use_36V_rechargeable |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
745 MENU_END |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
746 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
747 menu_new_battery_18650: |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
748 MENU_BEGIN tNewBattTitle, .2 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
749 MENU_CALL tNewBattOld, use_old_batteries |
448 | 750 MENU_CALL tNew18650, use_18650_battery |
0 | 751 MENU_END |
752 | |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
753 |
457 | 754 global use_old_prior_209 |
755 use_old_prior_209: | |
756 clrf EEADRH | |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
757 read_int_eeprom 0x0F ; =0:1.5V, =1:3,6V Saft, =2:LiIon 3,7V/0.8Ah, =3:LiIon 3,7V/3.1Ah, =4: LiIon 3,7V/2.3Ah |
457 | 758 incfsz EEDATA,F ; Was 0xFF? |
477
44b8a826b314
NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents:
474
diff
changeset
|
759 return ; No, done. |
44b8a826b314
NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents:
474
diff
changeset
|
760 |
457 | 761 call lt2942_get_status ; Check for gauge IC |
762 movlw .3 ; Assume a 18650 | |
763 btfss battery_gauge_available ; cR/2 hardware? | |
764 movlw .1 ; Assume a Saft | |
765 movwf EEDATA | |
766 write_int_eeprom 0x0F ; Store the new battery type into EEPROM | |
767 return | |
768 | |
0 | 769 global use_old_batteries |
770 use_old_batteries: | |
771 clrf EEADRH | |
772 read_int_eeprom 0x07 | |
773 movff EEDATA,battery_gauge+0 | |
774 read_int_eeprom 0x08 | |
775 movff EEDATA,battery_gauge+1 | |
776 read_int_eeprom 0x09 | |
777 movff EEDATA,battery_gauge+2 | |
778 read_int_eeprom 0x0A | |
779 movff EEDATA,battery_gauge+3 | |
780 read_int_eeprom 0x0B | |
781 movff EEDATA,battery_gauge+4 | |
782 read_int_eeprom 0x0C | |
783 movff EEDATA,battery_gauge+5 | |
448 | 784 read_int_eeprom 0x0F |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
785 movff EEDATA,battery_type; =0:1.5V, =1:3,6V Saft, =2:LiIon 3,7V/0.8Ah, =3:LiIon 3,7V/3.1Ah, =4: LiIon 3,7V/2.3Ah |
448 | 786 |
450 | 787 rcall setup_new_saft ; Any other value |
477
44b8a826b314
NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents:
474
diff
changeset
|
788 incf EEDATA,F ; 1 ... 5 |
450 | 789 dcfsnz EEDATA,F |
448 | 790 rcall setup_new_15v ;=0 |
450 | 791 dcfsnz EEDATA,F |
448 | 792 rcall setup_new_saft ;=1 |
450 | 793 dcfsnz EEDATA,F |
448 | 794 rcall setup_new_panasonic ;=2 |
477
44b8a826b314
NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents:
474
diff
changeset
|
795 dcfsnz EEDATA,F |
448 | 796 rcall setup_new_18650 ;=3 |
477
44b8a826b314
NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents:
474
diff
changeset
|
797 dcfsnz EEDATA,F |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
798 rcall setup_new_16650 ;=4 |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
799 |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
800 bcf use_old_batt_flag ; clear flag |
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
801 goto surfloop ; Jump to Surfaceloop! |
0 | 802 |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
803 setup_new_15v: |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
804 bsf charge_disable |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
805 bcf TRISE,2 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
806 movlw .100 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
807 movwf batt_percent ; To have 1,5V batteries right after firmware update |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
808 movlw .0 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
809 movff WREG,battery_type |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
810 return |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
811 |
448 | 812 setup_new_saft: |
813 banksel battery_capacity | |
814 movlw LOW internal_saft_capacity | |
815 movwf internal_battery_capacity+0 | |
816 movlw HIGH internal_saft_capacity | |
817 movwf internal_battery_capacity+1 | |
818 movlw LOW saft_capacity | |
819 movwf battery_capacity+0 | |
820 movlw HIGH saft_capacity | |
821 movwf battery_capacity+1 | |
822 movlw LOW saft_offset | |
823 movwf battery_offset+0 | |
824 movlw HIGH saft_offset | |
825 movwf battery_offset+1 | |
826 banksel common | |
827 bsf charge_disable | |
828 bcf TRISE,2 | |
829 movlw .1 | |
830 movff WREG,battery_type | |
831 return | |
832 | |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
833 setup_new_panasonic: |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
834 banksel battery_capacity |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
835 movlw LOW internal_panasonic_capacity |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
836 movwf internal_battery_capacity+0 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
837 movlw HIGH internal_panasonic_capacity |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
838 movwf internal_battery_capacity+1 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
839 movlw LOW panasonic_capacity |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
840 movwf battery_capacity+0 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
841 movlw HIGH panasonic_capacity |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
842 movwf battery_capacity+1 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
843 movlw LOW panasonic_offset |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
844 movwf battery_offset+0 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
845 movlw HIGH panasonic_offset |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
846 movwf battery_offset+1 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
847 banksel common |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
848 bcf charge_disable |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
849 bsf TRISE,2 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
850 movlw .2 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
851 movff WREG,battery_type |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
852 return |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
853 |
448 | 854 setup_new_18650: |
855 banksel battery_capacity | |
856 clrf internal_battery_capacity+0 | |
857 clrf internal_battery_capacity+1 | |
858 movlw LOW ncr18650_capacity | |
859 movwf battery_capacity+0 | |
860 movlw HIGH ncr18650_capacity | |
861 movwf battery_capacity+1 | |
862 movlw LOW ncr18650_offset | |
863 movwf battery_offset+0 | |
864 movlw HIGH ncr18650_offset | |
865 movwf battery_offset+1 | |
866 banksel common | |
867 bcf charge_disable | |
868 bsf TRISE,2 | |
869 movlw .3 | |
870 movff WREG,battery_type | |
871 return | |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
872 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
873 setup_new_16650: |
448 | 874 banksel battery_capacity |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
875 clrf internal_battery_capacity+0 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
876 clrf internal_battery_capacity+1 |
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
877 movlw LOW ur16650_capacity |
448 | 878 movwf battery_capacity+0 |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
879 movlw HIGH ur16650_capacity |
448 | 880 movwf battery_capacity+1 |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
881 movlw LOW ur16650_offset |
448 | 882 movwf battery_offset+0 |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
883 movlw HIGH ur16650_offset |
448 | 884 movwf battery_offset+1 |
885 banksel common | |
886 bcf charge_disable | |
887 bsf TRISE,2 | |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
888 movlw .4 |
448 | 889 movff WREG,battery_type |
890 return | |
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
470
diff
changeset
|
891 |
474 | 892 use_16650_battery: |
893 rcall setup_new_16650 | |
894 bra use_new_36V_2 | |
448 | 895 use_18650_battery: |
896 rcall setup_new_18650 | |
897 bra use_new_36V_2 | |
0 | 898 use_new_36V_batteries: |
448 | 899 rcall setup_new_saft |
900 bra use_new_36V_2 | |
901 use_new_15V_batteries: | |
902 rcall setup_new_15v | |
903 use_new_36V_2: | |
0 | 904 call reset_battery_pointer ; Resets battery pointer 0x07-0x0C and battery_gauge:5 |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
905 goto surfloop ; Jump to Surfaceloop! |
448 | 906 use_36V_rechargeable: |
907 rcall setup_new_panasonic | |
908 call reset_battery_internal_only | |
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
457
diff
changeset
|
909 goto surfloop ; Jump to Surfaceloop! |
0 | 910 |
911 END |