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