Mercurial > public > hwos_code
annotate src/menu_tree.asm @ 121:d519e24ef990
minor
author | heinrichsweikamp |
---|---|
date | Fri, 27 Jun 2014 16:15:07 +0200 |
parents | f3062a611eef |
children | e0b758865e91 |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File menu_tree.asm | |
4 ; | |
5 ; OSTC3 menus | |
6 ; | |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-07-11 : [jDG] Creation. | |
11 | |
12 #include "ostc3.inc" ; Mandatory header | |
13 #include "gaslist.inc" | |
14 #include "menu_processor.inc" | |
15 #include "start.inc" | |
16 #include "comm.inc" | |
17 #include "logbook.inc" | |
18 #include "tft.inc" | |
19 #include "eeprom_rs232.inc" | |
20 #include "external_flash.inc" | |
21 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c | |
22 #include "isr.inc" | |
23 #include "ghostwriter.inc" | |
24 #include "adc_lightsensor.inc" | |
25 | |
26 gui CODE | |
27 ;============================================================================= | |
28 ; Main Menu | |
66
00636132cca6
BUGFIX: Maintain last selected customview in surface mode
heinrichsweikamp
parents:
64
diff
changeset
|
29 global do_main_menu,do_main_menu2 |
0 | 30 do_main_menu: |
39
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
23
diff
changeset
|
31 movff menupos3,customview_surfmode; save last customview |
66
00636132cca6
BUGFIX: Maintain last selected customview in surface mode
heinrichsweikamp
parents:
64
diff
changeset
|
32 do_main_menu2: |
0 | 33 bcf sleepmode ; for timeout |
34 call menu_processor_reset ; restart from first icon. | |
35 | |
36 do_continue_main_menu: | |
37 call menu_processor_pop ; drop exit line. | |
38 call menu_processor_pop ; back to last icon. | |
39 | |
40 extern do_demo_divemode, restart | |
41 MENU_BEGIN tMainMenu, .7 | |
42 MENU_CALL tLogbook, logbook | |
43 MENU_CALL tGasSetup, do_gas_menu | |
44 MENU_CALL tCCRSetup, do_ccr_menu | |
45 MENU_CALL tPlan, do_planner_menu_reset | |
46 MENU_CALL tDiveModeMenu, do_divemode_menu | |
47 MENU_CALL tSystSets, do_settings_menu | |
48 MENU_CALL tExit, restart | |
49 MENU_END | |
50 | |
51 do_info_menu: | |
62 | 52 MENU_BEGIN tInfoMenu, .5 |
0 | 53 MENU_DYNAMIC info_menu_serial, 0 |
54 MENU_DYNAMIC info_menu_firmware, 0 | |
55 MENU_DYNAMIC info_menu_total_dives, 0 | |
62 | 56 MENU_DYNAMIC info_menu_battery_volts,0 |
0 | 57 MENU_CALL tExit, do_return_settings |
58 MENU_END | |
59 | |
60 ;============================================================================= | |
61 ; CCR Setup | |
62 | |
63 return_ccr_menu: | |
64 call menu_processor_pop ; drop exit line. | |
65 call menu_processor_pop ; back to last gas. | |
66 | |
67 do_ccr_menu: | |
113 | 68 bcf menu_show_sensors ; Clear flag |
69 bcf menu_show_sensors2 ; Clear flag | |
70 MENU_BEGIN tCCRSetup, .6 | |
0 | 71 MENU_OPTION tCCRMode, oCCRMode, 0 |
72 MENU_CALL tCCRSensor, do_ccr_sensor | |
113 | 73 MENU_CALL tCalibrateMenu, do_calibrate_menu |
0 | 74 MENU_CALL tDiluentSetup, do_diluent_setup |
75 MENU_CALL tFixedSetpoints, do_fixed_setpoints | |
76 MENU_CALL tExit, do_continue_main_menu | |
77 MENU_END | |
78 | |
113 | 79 do_calibrate_menu: |
80 btfss c3_hardware | |
81 bra return_ccr_menu ; Not for normal OSTC3 hardware | |
82 call enable_ir ; Enable IR-Port | |
83 bsf menu_show_sensors2 ; Set flag | |
84 do_calibrate_menu2: | |
85 MENU_BEGIN tCalibrateMenu, .6 | |
86 MENU_CALL tDiveHudMask1, 0 | |
87 MENU_CALL tDiveHudMask2, 0 | |
88 MENU_CALL tDiveHudMask3, 0 | |
89 MENU_OPTION tCalibrationGas,oCalGasO2, 0 | |
90 MENU_CALL tCalibrate, do_calibrate_mix | |
91 MENU_CALL tExit, return_ccr_menu | |
92 MENU_END | |
93 | |
94 do_calibrate_mix: | |
95 extern calibrate_mix | |
96 call calibrate_mix ; Calibrate with opt_calibration_O2_ratio, also calibrate S8 HUD if connected | |
97 goto restart ; Restart into surface mode | |
98 | |
0 | 99 do_ccr_sensor: |
100 call enable_ir ; Enable IR-Port | |
101 bsf menu_show_sensors ; Set flag | |
102 MENU_BEGIN tCCRSensor, .4 | |
103 MENU_CALL tDiveHudMask1, 0 | |
104 MENU_CALL tDiveHudMask2, 0 | |
105 MENU_CALL tDiveHudMask3, 0 | |
106 MENU_CALL tExit, return_ccr_menu | |
107 MENU_END | |
108 | |
109 do_diluent_setup: | |
110 bsf ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10") | |
111 call gaslist_cleanup_list ; Takes care that only one gas can be first and first has 0m change depth | |
112 MENU_BEGIN tDiluentSetup, .6 | |
113 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
114 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
115 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
116 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
117 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
118 MENU_CALL tExit, return_ccr_menu | |
119 MENU_END | |
120 | |
121 do_return_fixed_setpoints: | |
122 call menu_processor_pop ; drop exit line. | |
123 call menu_processor_pop ; back to last gas. | |
124 | |
125 do_fixed_setpoints: | |
126 MENU_BEGIN tFixedSetpoints, .6 | |
127 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
128 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
129 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
130 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
131 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
132 MENU_CALL tExit, return_ccr_menu | |
133 MENU_END | |
134 | |
135 do_edit_sp_menu: | |
136 call gaslist_setSP ; Save current item. | |
137 MENU_BEGIN tFixedSetpoints, .5 | |
138 MENU_DYNAMIC gaslist_strcat_setpoint_0,0 | |
139 MENU_CALL tSPPlus, gaslist_spplus | |
140 MENU_CALL tDepthPlus, gaslist_spdepthplus | |
141 MENU_CALL tDepthMinus, gaslist_spdepthminus | |
142 MENU_CALL tExit, do_return_fixed_setpoints | |
143 MENU_END | |
144 | |
145 ;============================================================================= | |
146 ; OC Gas Setup | |
147 | |
148 return_gas_menu: | |
149 call menu_processor_pop ; drop exit line. | |
150 call menu_processor_pop ; back to last gas. | |
151 | |
152 btfsc ccr_diluent_setup ; Return to CCR-Menu? | |
153 bra do_diluent_setup ; Yes. | |
154 do_gas_menu: | |
155 bcf ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10") | |
156 call gaslist_cleanup_list ; Takes care that only one gas can be first and first has 0m change depth | |
157 MENU_BEGIN tGaslist, .6 | |
158 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
159 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
160 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
161 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
162 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
163 MENU_CALL tExit, do_continue_main_menu | |
164 MENU_END | |
165 | |
166 return_gas_depth: | |
167 call menu_processor_pop ; drop exit line. | |
168 call menu_processor_pop ; back to last gas. | |
169 bra do_edit_gas_menu_1 | |
170 | |
171 do_edit_gas_menu: | |
172 call gaslist_setgas ; Save current item. | |
173 do_edit_gas_menu_1: ; Keep current gas. | |
174 MENU_BEGIN tGasEdit, .6 | |
175 MENU_DYNAMIC gaslist_gastitle, 0 | |
176 MENU_DYNAMIC gaslist_MOD_END, 0 | |
177 MENU_DYNAMIC gaslist_show_type, gaslist_toggle_type | |
178 MENU_CALL tSetup_mix, do_setup_mix | |
179 MENU_CALL tGasDepth, do_gas_depth_menu | |
180 MENU_CALL tExit, return_gas_menu | |
181 MENU_END | |
182 | |
183 do_setup_mix: | |
184 MENU_BEGIN tGasEdit, .7 | |
185 MENU_DYNAMIC gaslist_gastitle, 0 | |
186 MENU_DYNAMIC gaslist_MOD_END, 0 | |
187 MENU_CALL tO2Plus, gaslist_pO2 | |
188 MENU_CALL tO2Minus, gaslist_mO2 | |
189 MENU_CALL tHePlus, gaslist_pHe | |
190 MENU_CALL tHeMinus, gaslist_mHe | |
191 MENU_CALL tExit, return_gas_depth | |
192 MENU_END | |
193 | |
194 global do_gas_depth_menu | |
195 do_gas_depth_menu: | |
196 MENU_BEGIN tGasEdit, .6 | |
197 MENU_DYNAMIC gaslist_gastitle, 0 | |
198 MENU_DYNAMIC gaslist_MOD_END, 0 | |
199 MENU_CALL tDepthPlus, gaslist_pDepth | |
200 MENU_CALL tDepthMinus, gaslist_mDepth | |
201 MENU_DYNAMIC gaslist_reset_mod_title,gaslist_reset_mod | |
202 MENU_CALL tExit, return_gas_depth | |
203 MENU_END | |
204 | |
205 ;============================================================================= | |
206 ; Simulator menus | |
207 | |
208 global do_planner_menu | |
209 | |
210 do_planner_menu_reset: | |
211 extern option_save_all | |
212 call option_save_all | |
213 ;---- Reset dive time/depth to default values | |
214 extern option_reset | |
215 lfsr FSR0,odiveInterval | |
216 call option_reset | |
217 lfsr FSR0,obottomTime | |
218 call option_reset | |
219 lfsr FSR0,obottomDepth | |
220 call option_reset | |
221 | |
222 do_planner_menu: | |
223 extern do_demo_planner | |
224 MENU_BEGIN tPlan, .6 | |
225 MENU_CALL tInter, do_demo_divemode | |
226 MENU_OPTION tIntvl, odiveInterval, 0 | |
227 MENU_OPTION tBtTm, obottomTime, 0 | |
228 MENU_OPTION tMxDep, obottomDepth, 0 | |
229 MENU_CALL tDeco, do_demo_planner | |
230 MENU_CALL tExit, do_continue_main_menu | |
231 MENU_END | |
232 | |
233 ;============================================================================= | |
234 ; Divemode menu | |
235 | |
236 do_return_divemode_menu: | |
237 call menu_processor_pop ; drop exit line. | |
238 call menu_processor_pop ; back to last gas. | |
239 | |
240 do_divemode_menu: | |
241 MENU_BEGIN tDiveModeMenu, .7 | |
242 MENU_OPTION tDvMode, oDiveMode, 0 | |
243 MENU_OPTION tDkMode, oDecoMode, 0 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
244 MENU_CALL tppO2settings, do_ppo2_menu |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
245 MENU_OPTION tsafetystopmenu,oSafetyStop, 0 |
0 | 246 MENU_OPTION tFTTSMenu, oExtraTime,0 |
247 MENU_CALL tDecoparameters, do_decoparameters_menu | |
248 MENU_CALL tExit, do_continue_main_menu | |
249 MENU_END | |
250 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
251 do_ppo2_menu: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
252 MENU_BEGIN tppO2settings, .3 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
253 MENU_DYNAMIC divesets_ppo2_max, do_toggle_ppo2_max |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
254 MENU_DYNAMIC divesets_ppo2_min, do_toggle_ppo2_min |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
255 MENU_CALL tExit, do_return_divemode_menu |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
256 MENU_END |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
257 |
0 | 258 do_return_decoparameters_menu: |
259 call menu_processor_pop ; drop exit line. | |
260 call menu_processor_pop ; back to setting | |
261 do_decoparameters_menu: | |
262 MENU_BEGIN tDecoparameters, .7 | |
263 MENU_OPTION tGF_low, oGF_low, 0 | |
264 MENU_OPTION tGF_high, oGF_high, 0 | |
265 MENU_CALL taGFMenu, do_aGF_menu | |
266 MENU_OPTION tSaturationMult,osatmult, 0 | |
267 MENU_OPTION tDesaturationMult,odesatmult,0 | |
268 MENU_OPTION tLastDecostop,oLastDeco, 0 | |
269 MENU_CALL tExit, do_return_divemode_menu | |
270 MENU_END | |
271 | |
272 do_aGF_menu: | |
273 MENU_BEGIN taGFMenu, .4 | |
274 MENU_OPTION taGF_enable,oEnable_aGF, 0 | |
275 MENU_OPTION taGF_low, oaGF_low, 0 | |
276 MENU_OPTION taGF_high, oaGF_high, 0 | |
277 MENU_CALL tExit, do_return_decoparameters_menu | |
278 MENU_END | |
279 ;============================================================================= | |
280 ; Setup Menu | |
281 | |
282 do_return_settings: | |
283 bcf settime_setdate ; Clear flag | |
284 call menu_processor_pop ; Drop exit entry | |
285 call menu_processor_pop ; Pop return line. | |
286 | |
287 extern compass_calibration_loop | |
288 do_settings_menu: | |
289 MENU_BEGIN tSystSets, .7 | |
290 MENU_CALL tInfoMenu, do_info_menu | |
291 MENU_CALL tSetTimeDate, do_date_time_menu | |
292 MENU_CALL tDispSets, do_dispsets_menu | |
293 MENU_OPTION tLanguage, oLanguage, 0 | |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
294 MENU_CALL tCompassMenu, do_compass_menu |
0 | 295 MENU_CALL tResetMenu, do_reset_menu |
296 MENU_CALL tExit, do_continue_main_menu | |
297 MENU_END | |
298 | |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
299 do_compass_menu: |
90
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
78
diff
changeset
|
300 MENU_BEGIN tSystSets, .2 |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
301 MENU_CALL tCompassMenu, compass_calibration_loop |
90
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
78
diff
changeset
|
302 ; MENU_OPTION tCompassGain, oCompassGain, 0 |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
303 MENU_CALL tExit, do_return_settings |
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
304 MENU_END |
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
305 |
0 | 306 ;============================================================================= |
307 ; Reset and confirmation menu. | |
308 | |
309 do_reset_menu: | |
63 | 310 MENU_BEGIN tResetMenu, .6 |
0 | 311 MENU_CALL tExit, do_return_settings |
312 MENU_CALL tReboot, do_reset_menu2 ; Confirm | |
313 MENU_CALL tResetDeco, do_reset_menu3 ; Confirm | |
314 MENU_CALL tResetSettings, do_reset_menu4 ; Confirm | |
63 | 315 MENU_CALL tResetLogbook, do_reset_menu5 ; Confirm |
0 | 316 MENU_CALL tResetBattery, new_battery_menu ; New Battery submenu |
317 MENU_END | |
318 | |
319 do_reset_menu2: | |
320 MENU_BEGIN tResetMenu2, .2 | |
321 MENU_CALL tAbort, do_continue_menu_3stack | |
322 MENU_CALL tReboot, do_reboot ; Reboot | |
323 MENU_END | |
324 | |
325 do_reset_menu3: | |
326 MENU_BEGIN tResetMenu2, .2 | |
327 MENU_CALL tAbort, do_continue_menu_3stack | |
328 MENU_CALL tResetDeco, do_reset_deco ; Reset Deco | |
329 MENU_END | |
330 | |
331 do_reset_menu4: | |
332 MENU_BEGIN tResetMenu2, .2 | |
333 MENU_CALL tAbort, do_continue_menu_3stack | |
334 MENU_CALL tResetSettings, do_reset_settings ; Reset all settings | |
335 MENU_END | |
336 | |
63 | 337 do_reset_menu5: |
338 MENU_BEGIN tResetMenu2, .2 | |
339 MENU_CALL tAbort, do_continue_menu_3stack | |
340 MENU_CALL tResetLogbook, do_reset_logbook ; Reset logbook | |
341 MENU_END | |
342 | |
343 do_reset_logbook: | |
344 clrf EEADRH ; Make sure to select eeprom bank 0 | |
345 clrf EEDATA | |
78
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
346 read_int_eeprom .2 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
347 write_int_eeprom .15 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
348 read_int_eeprom .3 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
349 write_int_eeprom .16 ; Copy number of dives |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
350 write_int_eeprom .2 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
351 write_int_eeprom .3 ; Clear total dives |
63 | 352 write_int_eeprom .4 |
353 write_int_eeprom .5 | |
354 write_int_eeprom .6 ; Reset logbook pointers | |
355 call ext_flash_erase_logbook ; And complete logbook (!) | |
356 goto do_continue_main_menu ; back to menu | |
357 | |
0 | 358 |
359 do_reset_deco: | |
360 movlw d'79' ; 79% N2 | |
361 movff WREG,char_I_N2_ratio | |
362 movlw d'0' | |
363 movff WREG,char_I_step_is_1min ; 2 second deco mode | |
364 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy for deco routine | |
365 movff int_I_pres_respiration+0,int_I_pres_surface+0 ; copy for desat routine | |
366 movff int_I_pres_respiration+1,int_I_pres_surface+1 | |
367 | |
368 extern deco_reset | |
369 call deco_reset | |
370 call deco_calc_desaturation_time ; calculate desaturation time | |
371 banksel common | |
372 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode | |
373 banksel common | |
374 clrf nofly_time+0 ; Reset NoFly | |
375 clrf nofly_time+1 | |
376 clrf desaturation_time+0 ; Reset Desat | |
377 clrf desaturation_time+1 | |
378 goto do_return_settings ; back to menu | |
379 | |
380 do_reset_settings: | |
381 extern option_reset_all | |
382 call option_reset_all ; Reset all options to factory default. | |
76 | 383 goto restart ; Restart into surfacemode |
0 | 384 |
385 do_continue_menu_3stack: ; Return three levels deep | |
386 call menu_processor_pop | |
387 goto do_return_settings | |
388 | |
389 do_reboot: | |
390 call ext_flash_enable_protection ; Enables write protection | |
391 reset | |
392 | |
393 | |
394 do_date_time_menu: | |
395 MENU_BEGIN tSetTimeDate, .4 | |
396 MENU_CALL tSetTime, do_time_menu | |
397 MENU_CALL tSetDate, do_date_menu | |
398 MENU_OPTION tDateFormat,oDateFormat, 0 | |
399 MENU_CALL tExit, do_return_settings | |
400 MENU_END | |
401 | |
402 do_date_menu: | |
403 bsf settime_setdate | |
404 MENU_BEGIN tSetDate, .4 | |
405 MENU_OPTION tSetDay, oSetDay, 0 | |
50 | 406 MENU_OPTION tSetMonth, oSetMonth, 0 |
0 | 407 MENU_OPTION tSetYear, oSetYear, 0 |
408 MENU_CALL tExit, do_continue_menu_3stack | |
409 MENU_END | |
410 | |
411 | |
412 do_reset_seconds: | |
413 clrf secs | |
414 extern rtc_set_rtc | |
415 call rtc_set_rtc ; writes mins,sec,hours,day,month and year to rtc module | |
416 do_time_menu: | |
417 bsf settime_setdate | |
418 MENU_BEGIN tSetTime, .4 | |
419 MENU_OPTION tSetHours, oSetHours, 0 | |
420 MENU_OPTION tSetMinutes,oSetMinutes, 0 | |
421 MENU_CALL tSetSeconds, do_reset_seconds | |
422 MENU_CALL tExit, do_continue_menu_3stack | |
423 MENU_END | |
424 | |
425 | |
426 do_toggle_ppo2_max: ; add 0.1bar, with hard-coded max. | |
427 movff opt_ppO2_max,lo ; banksafe | |
428 movlw .10 | |
429 addwf lo,F | |
430 movlw ppo2_highest_setting | |
431 cpfsgt lo | |
432 bra do_toggle_ppo2_max2 | |
433 movlw .120 | |
434 movwf lo | |
435 do_toggle_ppo2_max2: | |
436 movff lo,opt_ppO2_max | |
437 return | |
438 | |
439 do_toggle_ppo2_min: ; sub 0.1bar, with hard-coded min. | |
440 movff opt_ppO2_min,lo ; banksafe | |
441 incf lo,F | |
442 movlw .21 | |
443 cpfsgt lo | |
444 bra do_toggle_ppo2_min2 | |
445 movlw ppo2_lowest_setting | |
446 movwf lo | |
447 do_toggle_ppo2_min2: | |
448 movff lo,opt_ppO2_min | |
449 return | |
450 | |
451 | |
452 ; Logbook offset sub-menu | |
453 do_log_offset_menu: | |
454 MENU_BEGIN tLogOffset, .6 | |
455 MENU_DYNAMIC TFT_LogOffset_Logtitle, 0 | |
456 MENU_CALL tLogOffsetp1, do_logoffset_plus1 | |
457 MENU_CALL tLogOffsetp10, do_logoffset_plus10 | |
458 MENU_CALL tLogOffsetm1, do_logoffset_minus1 | |
459 MENU_CALL tLogOffsetm10, do_logoffset_minus10 | |
460 MENU_CALL tExit, do_dispsets_menu_3stack | |
461 MENU_END | |
462 | |
463 | |
464 do_logoffset_minus1: | |
465 call do_logoffset_common_read ; Read into lo:hi | |
466 movlw d'1' | |
467 subwf lo | |
468 movlw d'0' | |
469 subwfb hi | |
470 btfss hi,7 ; <0? | |
471 goto do_logoffset_common_write ; Store and return | |
472 clrf lo | |
473 clrf hi | |
474 goto do_logoffset_common_write ; Store and return | |
475 | |
476 do_logoffset_minus10: | |
477 call do_logoffset_common_read ; Read into lo:hi | |
478 movlw d'10' | |
479 subwf lo | |
480 movlw d'0' | |
481 subwfb hi | |
482 btfss hi,7 ; <0? | |
483 goto do_logoffset_common_write ; Store and return | |
484 clrf lo | |
485 clrf hi | |
486 goto do_logoffset_common_write ; Store and return | |
487 | |
488 do_logoffset_plus1: | |
489 call do_logoffset_common_read ; Read into lo:hi | |
490 movlw d'1' | |
491 addwf lo | |
492 movlw d'0' | |
493 addwfc hi | |
494 goto do_logoffset_common_write ; Store and return | |
495 | |
496 do_logoffset_plus10: | |
497 call do_logoffset_common_read ; Read into lo:hi | |
498 movlw d'10' | |
499 addwf lo | |
500 movlw d'0' | |
501 addwfc hi | |
502 goto do_logoffset_common_write ; Store and return | |
503 | |
504 do_dispsets_menu_3stack: | |
50 | 505 bcf in_color_menu |
0 | 506 call menu_processor_pop |
507 call menu_processor_pop | |
508 | |
509 do_dispsets_menu: | |
50 | 510 MENU_BEGIN tDispSets, .7 |
0 | 511 MENU_OPTION tBright, oBrightness, 0 |
512 MENU_OPTION tUnits, oUnits, 0 | |
513 MENU_CALL tLogOffset, do_log_offset_menu | |
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
18
diff
changeset
|
514 MENU_OPTION tSamplingrate,oSamplingRate,0 |
0 | 515 MENU_OPTION tDvSalinity,oDiveSalinity, 0 |
50 | 516 MENU_CALL tColorScheme, do_color_scheme |
0 | 517 MENU_CALL tExit, do_return_settings |
518 MENU_END | |
519 | |
50 | 520 |
521 extern oColorSetDive | |
522 do_color_scheme: | |
523 bsf in_color_menu | |
524 MENU_BEGIN tColorScheme, .2 | |
525 MENU_OPTION tColorSetDive,oColorSetDive, 0 | |
526 MENU_CALL tExit, do_dispsets_menu_3stack | |
527 MENU_END | |
528 | |
529 | |
0 | 530 ;============================================================================= |
531 | |
532 global new_battery_menu | |
533 new_battery_menu: | |
534 bsf enable_screen_dumps ; To prevent exiting into COMM mode immediately | |
535 call TFT_boot ; Initialize TFT (includes clear screen) | |
536 call TFT_Display_FadeIn ; Show splash | |
537 movlw .100 | |
538 movwf batt_percent ; make sure to reset batt_percent | |
539 | |
540 ; Default (In cases of timeout or USB): Use old battery | |
541 clrf EEADRH | |
542 read_int_eeprom 0x07 | |
543 movff EEDATA,battery_gauge+0 | |
544 read_int_eeprom 0x08 | |
545 movff EEDATA,battery_gauge+1 | |
546 read_int_eeprom 0x09 | |
547 movff EEDATA,battery_gauge+2 | |
548 read_int_eeprom 0x0A | |
549 movff EEDATA,battery_gauge+3 | |
550 read_int_eeprom 0x0B | |
551 movff EEDATA,battery_gauge+4 | |
552 read_int_eeprom 0x0C | |
553 movff EEDATA,battery_gauge+5 | |
554 | |
76 | 555 call menu_processor_reset ; restart from first icon. |
556 | |
0 | 557 MENU_BEGIN tNewBattTitle, .3 |
558 MENU_CALL tNewBattOld, use_old_batteries | |
559 MENU_CALL tNewBattNew36, use_new_36V_batteries | |
560 MENU_CALL tNewBattNew15, use_new_15V_batteries | |
561 MENU_END | |
562 | |
563 global use_old_batteries | |
564 use_old_batteries: | |
565 clrf EEADRH | |
566 read_int_eeprom 0x07 | |
567 movff EEDATA,battery_gauge+0 | |
568 read_int_eeprom 0x08 | |
569 movff EEDATA,battery_gauge+1 | |
570 read_int_eeprom 0x09 | |
571 movff EEDATA,battery_gauge+2 | |
572 read_int_eeprom 0x0A | |
573 movff EEDATA,battery_gauge+3 | |
574 read_int_eeprom 0x0B | |
575 movff EEDATA,battery_gauge+4 | |
576 read_int_eeprom 0x0C | |
577 movff EEDATA,battery_gauge+5 | |
578 movlw .100 | |
579 movwf batt_percent ; To have 1,5V batteries right after firmware update | |
580 goto power_on_return | |
581 | |
582 use_new_15V_batteries: | |
583 use_new_36V_batteries: | |
584 call reset_battery_pointer ; Resets battery pointer 0x07-0x0C and battery_gauge:5 | |
585 goto power_on_return | |
586 | |
587 END |