Mercurial > public > hwos_code
annotate src/menu_tree.asm @ 73:0443f5e497d8
Merge with ClaudeDive_Translations
author | heinrichsweikamp |
---|---|
date | Mon, 10 Feb 2014 16:35:05 +0100 |
parents | 00636132cca6 |
children | a5ea132770db |
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 | |
317 write_int_eeprom .4 | |
318 write_int_eeprom .5 | |
319 write_int_eeprom .6 ; Reset logbook pointers | |
320 call ext_flash_erase_logbook ; And complete logbook (!) | |
321 goto do_continue_main_menu ; back to menu | |
322 | |
0 | 323 |
324 do_reset_deco: | |
325 movlw d'79' ; 79% N2 | |
326 movff WREG,char_I_N2_ratio | |
327 movlw d'0' | |
328 movff WREG,char_I_step_is_1min ; 2 second deco mode | |
329 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy for deco routine | |
330 movff int_I_pres_respiration+0,int_I_pres_surface+0 ; copy for desat routine | |
331 movff int_I_pres_respiration+1,int_I_pres_surface+1 | |
332 | |
333 extern deco_reset | |
334 call deco_reset | |
335 call deco_calc_desaturation_time ; calculate desaturation time | |
336 banksel common | |
337 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode | |
338 banksel common | |
339 clrf nofly_time+0 ; Reset NoFly | |
340 clrf nofly_time+1 | |
341 clrf desaturation_time+0 ; Reset Desat | |
342 clrf desaturation_time+1 | |
343 goto do_return_settings ; back to menu | |
344 | |
345 do_reset_settings: | |
346 extern option_reset_all | |
347 call option_reset_all ; Reset all options to factory default. | |
348 goto do_continue_main_menu ; back to menu | |
349 | |
350 do_continue_menu_3stack: ; Return three levels deep | |
351 call menu_processor_pop | |
352 goto do_return_settings | |
353 | |
354 do_reboot: | |
355 call ext_flash_enable_protection ; Enables write protection | |
356 reset | |
357 | |
358 | |
359 do_date_time_menu: | |
360 MENU_BEGIN tSetTimeDate, .4 | |
361 MENU_CALL tSetTime, do_time_menu | |
362 MENU_CALL tSetDate, do_date_menu | |
363 MENU_OPTION tDateFormat,oDateFormat, 0 | |
364 MENU_CALL tExit, do_return_settings | |
365 MENU_END | |
366 | |
367 do_date_menu: | |
368 bsf settime_setdate | |
369 MENU_BEGIN tSetDate, .4 | |
370 MENU_OPTION tSetDay, oSetDay, 0 | |
50 | 371 MENU_OPTION tSetMonth, oSetMonth, 0 |
0 | 372 MENU_OPTION tSetYear, oSetYear, 0 |
373 MENU_CALL tExit, do_continue_menu_3stack | |
374 MENU_END | |
375 | |
376 | |
377 do_reset_seconds: | |
378 clrf secs | |
379 extern rtc_set_rtc | |
380 call rtc_set_rtc ; writes mins,sec,hours,day,month and year to rtc module | |
381 do_time_menu: | |
382 bsf settime_setdate | |
383 MENU_BEGIN tSetTime, .4 | |
384 MENU_OPTION tSetHours, oSetHours, 0 | |
385 MENU_OPTION tSetMinutes,oSetMinutes, 0 | |
386 MENU_CALL tSetSeconds, do_reset_seconds | |
387 MENU_CALL tExit, do_continue_menu_3stack | |
388 MENU_END | |
389 | |
390 | |
391 do_toggle_ppo2_max: ; add 0.1bar, with hard-coded max. | |
392 movff opt_ppO2_max,lo ; banksafe | |
393 movlw .10 | |
394 addwf lo,F | |
395 movlw ppo2_highest_setting | |
396 cpfsgt lo | |
397 bra do_toggle_ppo2_max2 | |
398 movlw .120 | |
399 movwf lo | |
400 do_toggle_ppo2_max2: | |
401 movff lo,opt_ppO2_max | |
402 return | |
403 | |
404 do_toggle_ppo2_min: ; sub 0.1bar, with hard-coded min. | |
405 movff opt_ppO2_min,lo ; banksafe | |
406 incf lo,F | |
407 movlw .21 | |
408 cpfsgt lo | |
409 bra do_toggle_ppo2_min2 | |
410 movlw ppo2_lowest_setting | |
411 movwf lo | |
412 do_toggle_ppo2_min2: | |
413 movff lo,opt_ppO2_min | |
414 return | |
415 | |
416 | |
417 ; Logbook offset sub-menu | |
418 do_log_offset_menu: | |
419 MENU_BEGIN tLogOffset, .6 | |
420 MENU_DYNAMIC TFT_LogOffset_Logtitle, 0 | |
421 MENU_CALL tLogOffsetp1, do_logoffset_plus1 | |
422 MENU_CALL tLogOffsetp10, do_logoffset_plus10 | |
423 MENU_CALL tLogOffsetm1, do_logoffset_minus1 | |
424 MENU_CALL tLogOffsetm10, do_logoffset_minus10 | |
425 MENU_CALL tExit, do_dispsets_menu_3stack | |
426 MENU_END | |
427 | |
428 | |
429 do_logoffset_minus1: | |
430 call do_logoffset_common_read ; Read into lo:hi | |
431 movlw d'1' | |
432 subwf lo | |
433 movlw d'0' | |
434 subwfb hi | |
435 btfss hi,7 ; <0? | |
436 goto do_logoffset_common_write ; Store and return | |
437 clrf lo | |
438 clrf hi | |
439 goto do_logoffset_common_write ; Store and return | |
440 | |
441 do_logoffset_minus10: | |
442 call do_logoffset_common_read ; Read into lo:hi | |
443 movlw d'10' | |
444 subwf lo | |
445 movlw d'0' | |
446 subwfb hi | |
447 btfss hi,7 ; <0? | |
448 goto do_logoffset_common_write ; Store and return | |
449 clrf lo | |
450 clrf hi | |
451 goto do_logoffset_common_write ; Store and return | |
452 | |
453 do_logoffset_plus1: | |
454 call do_logoffset_common_read ; Read into lo:hi | |
455 movlw d'1' | |
456 addwf lo | |
457 movlw d'0' | |
458 addwfc hi | |
459 goto do_logoffset_common_write ; Store and return | |
460 | |
461 do_logoffset_plus10: | |
462 call do_logoffset_common_read ; Read into lo:hi | |
463 movlw d'10' | |
464 addwf lo | |
465 movlw d'0' | |
466 addwfc hi | |
467 goto do_logoffset_common_write ; Store and return | |
468 | |
469 do_dispsets_menu_3stack: | |
50 | 470 bcf in_color_menu |
0 | 471 call menu_processor_pop |
472 call menu_processor_pop | |
473 | |
474 do_dispsets_menu: | |
50 | 475 MENU_BEGIN tDispSets, .7 |
0 | 476 MENU_OPTION tBright, oBrightness, 0 |
477 MENU_OPTION tUnits, oUnits, 0 | |
478 MENU_CALL tLogOffset, do_log_offset_menu | |
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
18
diff
changeset
|
479 MENU_OPTION tSamplingrate,oSamplingRate,0 |
0 | 480 MENU_OPTION tDvSalinity,oDiveSalinity, 0 |
50 | 481 MENU_CALL tColorScheme, do_color_scheme |
0 | 482 MENU_CALL tExit, do_return_settings |
483 MENU_END | |
484 | |
50 | 485 |
486 extern oColorSetDive | |
487 do_color_scheme: | |
488 bsf in_color_menu | |
489 MENU_BEGIN tColorScheme, .2 | |
490 MENU_OPTION tColorSetDive,oColorSetDive, 0 | |
491 MENU_CALL tExit, do_dispsets_menu_3stack | |
492 MENU_END | |
493 | |
494 | |
0 | 495 ;============================================================================= |
496 | |
497 global new_battery_menu | |
498 new_battery_menu: | |
499 bsf enable_screen_dumps ; To prevent exiting into COMM mode immediately | |
500 call TFT_boot ; Initialize TFT (includes clear screen) | |
501 call TFT_Display_FadeIn ; Show splash | |
502 movlw .100 | |
503 movwf batt_percent ; make sure to reset batt_percent | |
504 | |
505 ; Default (In cases of timeout or USB): Use old battery | |
506 clrf EEADRH | |
507 read_int_eeprom 0x07 | |
508 movff EEDATA,battery_gauge+0 | |
509 read_int_eeprom 0x08 | |
510 movff EEDATA,battery_gauge+1 | |
511 read_int_eeprom 0x09 | |
512 movff EEDATA,battery_gauge+2 | |
513 read_int_eeprom 0x0A | |
514 movff EEDATA,battery_gauge+3 | |
515 read_int_eeprom 0x0B | |
516 movff EEDATA,battery_gauge+4 | |
517 read_int_eeprom 0x0C | |
518 movff EEDATA,battery_gauge+5 | |
519 | |
520 MENU_BEGIN tNewBattTitle, .3 | |
521 MENU_CALL tNewBattOld, use_old_batteries | |
522 MENU_CALL tNewBattNew36, use_new_36V_batteries | |
523 MENU_CALL tNewBattNew15, use_new_15V_batteries | |
524 MENU_END | |
525 | |
526 global use_old_batteries | |
527 use_old_batteries: | |
528 clrf EEADRH | |
529 read_int_eeprom 0x07 | |
530 movff EEDATA,battery_gauge+0 | |
531 read_int_eeprom 0x08 | |
532 movff EEDATA,battery_gauge+1 | |
533 read_int_eeprom 0x09 | |
534 movff EEDATA,battery_gauge+2 | |
535 read_int_eeprom 0x0A | |
536 movff EEDATA,battery_gauge+3 | |
537 read_int_eeprom 0x0B | |
538 movff EEDATA,battery_gauge+4 | |
539 read_int_eeprom 0x0C | |
540 movff EEDATA,battery_gauge+5 | |
541 movlw .100 | |
542 movwf batt_percent ; To have 1,5V batteries right after firmware update | |
543 goto power_on_return | |
544 | |
545 use_new_15V_batteries: | |
546 use_new_36V_batteries: | |
547 call reset_battery_pointer ; Resets battery pointer 0x07-0x0C and battery_gauge:5 | |
548 goto power_on_return | |
549 | |
550 END |