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