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