Mercurial > public > hwos_code
annotate src/menu_tree.asm @ 111:c61b7a4e317c
Bugfix: CNS in planner
author | heinrichsweikamp |
---|---|
date | Tue, 17 Jun 2014 12:00:20 +0200 |
parents | 223579e905c3 |
children | f3062a611eef |
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 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
222 MENU_CALL tppO2settings, do_ppo2_menu |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
223 MENU_OPTION tsafetystopmenu,oSafetyStop, 0 |
0 | 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 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
229 do_ppo2_menu: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
230 MENU_BEGIN tppO2settings, .3 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
231 MENU_DYNAMIC divesets_ppo2_max, do_toggle_ppo2_max |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
232 MENU_DYNAMIC divesets_ppo2_min, do_toggle_ppo2_min |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
233 MENU_CALL tExit, do_return_divemode_menu |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
234 MENU_END |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
235 |
0 | 236 do_return_decoparameters_menu: |
237 call menu_processor_pop ; drop exit line. | |
238 call menu_processor_pop ; back to setting | |
239 do_decoparameters_menu: | |
240 MENU_BEGIN tDecoparameters, .7 | |
241 MENU_OPTION tGF_low, oGF_low, 0 | |
242 MENU_OPTION tGF_high, oGF_high, 0 | |
243 MENU_CALL taGFMenu, do_aGF_menu | |
244 MENU_OPTION tSaturationMult,osatmult, 0 | |
245 MENU_OPTION tDesaturationMult,odesatmult,0 | |
246 MENU_OPTION tLastDecostop,oLastDeco, 0 | |
247 MENU_CALL tExit, do_return_divemode_menu | |
248 MENU_END | |
249 | |
250 do_aGF_menu: | |
251 MENU_BEGIN taGFMenu, .4 | |
252 MENU_OPTION taGF_enable,oEnable_aGF, 0 | |
253 MENU_OPTION taGF_low, oaGF_low, 0 | |
254 MENU_OPTION taGF_high, oaGF_high, 0 | |
255 MENU_CALL tExit, do_return_decoparameters_menu | |
256 MENU_END | |
257 ;============================================================================= | |
258 ; Setup Menu | |
259 | |
260 do_return_settings: | |
261 bcf settime_setdate ; Clear flag | |
262 call menu_processor_pop ; Drop exit entry | |
263 call menu_processor_pop ; Pop return line. | |
264 | |
265 extern compass_calibration_loop | |
266 do_settings_menu: | |
267 MENU_BEGIN tSystSets, .7 | |
268 MENU_CALL tInfoMenu, do_info_menu | |
269 MENU_CALL tSetTimeDate, do_date_time_menu | |
270 MENU_CALL tDispSets, do_dispsets_menu | |
271 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
|
272 MENU_CALL tCompassMenu, do_compass_menu |
0 | 273 MENU_CALL tResetMenu, do_reset_menu |
274 MENU_CALL tExit, do_continue_main_menu | |
275 MENU_END | |
276 | |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
277 do_compass_menu: |
90
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
78
diff
changeset
|
278 MENU_BEGIN tSystSets, .2 |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
279 MENU_CALL tCompassMenu, compass_calibration_loop |
90
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
78
diff
changeset
|
280 ; 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
|
281 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
|
282 MENU_END |
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
283 |
0 | 284 ;============================================================================= |
285 ; Reset and confirmation menu. | |
286 | |
287 do_reset_menu: | |
63 | 288 MENU_BEGIN tResetMenu, .6 |
0 | 289 MENU_CALL tExit, do_return_settings |
290 MENU_CALL tReboot, do_reset_menu2 ; Confirm | |
291 MENU_CALL tResetDeco, do_reset_menu3 ; Confirm | |
292 MENU_CALL tResetSettings, do_reset_menu4 ; Confirm | |
63 | 293 MENU_CALL tResetLogbook, do_reset_menu5 ; Confirm |
0 | 294 MENU_CALL tResetBattery, new_battery_menu ; New Battery submenu |
295 MENU_END | |
296 | |
297 do_reset_menu2: | |
298 MENU_BEGIN tResetMenu2, .2 | |
299 MENU_CALL tAbort, do_continue_menu_3stack | |
300 MENU_CALL tReboot, do_reboot ; Reboot | |
301 MENU_END | |
302 | |
303 do_reset_menu3: | |
304 MENU_BEGIN tResetMenu2, .2 | |
305 MENU_CALL tAbort, do_continue_menu_3stack | |
306 MENU_CALL tResetDeco, do_reset_deco ; Reset Deco | |
307 MENU_END | |
308 | |
309 do_reset_menu4: | |
310 MENU_BEGIN tResetMenu2, .2 | |
311 MENU_CALL tAbort, do_continue_menu_3stack | |
312 MENU_CALL tResetSettings, do_reset_settings ; Reset all settings | |
313 MENU_END | |
314 | |
63 | 315 do_reset_menu5: |
316 MENU_BEGIN tResetMenu2, .2 | |
317 MENU_CALL tAbort, do_continue_menu_3stack | |
318 MENU_CALL tResetLogbook, do_reset_logbook ; Reset logbook | |
319 MENU_END | |
320 | |
321 do_reset_logbook: | |
322 clrf EEADRH ; Make sure to select eeprom bank 0 | |
323 clrf EEDATA | |
78
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
324 read_int_eeprom .2 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
325 write_int_eeprom .15 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
326 read_int_eeprom .3 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
327 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
|
328 write_int_eeprom .2 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
329 write_int_eeprom .3 ; Clear total dives |
63 | 330 write_int_eeprom .4 |
331 write_int_eeprom .5 | |
332 write_int_eeprom .6 ; Reset logbook pointers | |
333 call ext_flash_erase_logbook ; And complete logbook (!) | |
334 goto do_continue_main_menu ; back to menu | |
335 | |
0 | 336 |
337 do_reset_deco: | |
338 movlw d'79' ; 79% N2 | |
339 movff WREG,char_I_N2_ratio | |
340 movlw d'0' | |
341 movff WREG,char_I_step_is_1min ; 2 second deco mode | |
342 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy for deco routine | |
343 movff int_I_pres_respiration+0,int_I_pres_surface+0 ; copy for desat routine | |
344 movff int_I_pres_respiration+1,int_I_pres_surface+1 | |
345 | |
346 extern deco_reset | |
347 call deco_reset | |
348 call deco_calc_desaturation_time ; calculate desaturation time | |
349 banksel common | |
350 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode | |
351 banksel common | |
352 clrf nofly_time+0 ; Reset NoFly | |
353 clrf nofly_time+1 | |
354 clrf desaturation_time+0 ; Reset Desat | |
355 clrf desaturation_time+1 | |
356 goto do_return_settings ; back to menu | |
357 | |
358 do_reset_settings: | |
359 extern option_reset_all | |
360 call option_reset_all ; Reset all options to factory default. | |
76 | 361 goto restart ; Restart into surfacemode |
0 | 362 |
363 do_continue_menu_3stack: ; Return three levels deep | |
364 call menu_processor_pop | |
365 goto do_return_settings | |
366 | |
367 do_reboot: | |
368 call ext_flash_enable_protection ; Enables write protection | |
369 reset | |
370 | |
371 | |
372 do_date_time_menu: | |
373 MENU_BEGIN tSetTimeDate, .4 | |
374 MENU_CALL tSetTime, do_time_menu | |
375 MENU_CALL tSetDate, do_date_menu | |
376 MENU_OPTION tDateFormat,oDateFormat, 0 | |
377 MENU_CALL tExit, do_return_settings | |
378 MENU_END | |
379 | |
380 do_date_menu: | |
381 bsf settime_setdate | |
382 MENU_BEGIN tSetDate, .4 | |
383 MENU_OPTION tSetDay, oSetDay, 0 | |
50 | 384 MENU_OPTION tSetMonth, oSetMonth, 0 |
0 | 385 MENU_OPTION tSetYear, oSetYear, 0 |
386 MENU_CALL tExit, do_continue_menu_3stack | |
387 MENU_END | |
388 | |
389 | |
390 do_reset_seconds: | |
391 clrf secs | |
392 extern rtc_set_rtc | |
393 call rtc_set_rtc ; writes mins,sec,hours,day,month and year to rtc module | |
394 do_time_menu: | |
395 bsf settime_setdate | |
396 MENU_BEGIN tSetTime, .4 | |
397 MENU_OPTION tSetHours, oSetHours, 0 | |
398 MENU_OPTION tSetMinutes,oSetMinutes, 0 | |
399 MENU_CALL tSetSeconds, do_reset_seconds | |
400 MENU_CALL tExit, do_continue_menu_3stack | |
401 MENU_END | |
402 | |
403 | |
404 do_toggle_ppo2_max: ; add 0.1bar, with hard-coded max. | |
405 movff opt_ppO2_max,lo ; banksafe | |
406 movlw .10 | |
407 addwf lo,F | |
408 movlw ppo2_highest_setting | |
409 cpfsgt lo | |
410 bra do_toggle_ppo2_max2 | |
411 movlw .120 | |
412 movwf lo | |
413 do_toggle_ppo2_max2: | |
414 movff lo,opt_ppO2_max | |
415 return | |
416 | |
417 do_toggle_ppo2_min: ; sub 0.1bar, with hard-coded min. | |
418 movff opt_ppO2_min,lo ; banksafe | |
419 incf lo,F | |
420 movlw .21 | |
421 cpfsgt lo | |
422 bra do_toggle_ppo2_min2 | |
423 movlw ppo2_lowest_setting | |
424 movwf lo | |
425 do_toggle_ppo2_min2: | |
426 movff lo,opt_ppO2_min | |
427 return | |
428 | |
429 | |
430 ; Logbook offset sub-menu | |
431 do_log_offset_menu: | |
432 MENU_BEGIN tLogOffset, .6 | |
433 MENU_DYNAMIC TFT_LogOffset_Logtitle, 0 | |
434 MENU_CALL tLogOffsetp1, do_logoffset_plus1 | |
435 MENU_CALL tLogOffsetp10, do_logoffset_plus10 | |
436 MENU_CALL tLogOffsetm1, do_logoffset_minus1 | |
437 MENU_CALL tLogOffsetm10, do_logoffset_minus10 | |
438 MENU_CALL tExit, do_dispsets_menu_3stack | |
439 MENU_END | |
440 | |
441 | |
442 do_logoffset_minus1: | |
443 call do_logoffset_common_read ; Read into lo:hi | |
444 movlw d'1' | |
445 subwf lo | |
446 movlw d'0' | |
447 subwfb hi | |
448 btfss hi,7 ; <0? | |
449 goto do_logoffset_common_write ; Store and return | |
450 clrf lo | |
451 clrf hi | |
452 goto do_logoffset_common_write ; Store and return | |
453 | |
454 do_logoffset_minus10: | |
455 call do_logoffset_common_read ; Read into lo:hi | |
456 movlw d'10' | |
457 subwf lo | |
458 movlw d'0' | |
459 subwfb hi | |
460 btfss hi,7 ; <0? | |
461 goto do_logoffset_common_write ; Store and return | |
462 clrf lo | |
463 clrf hi | |
464 goto do_logoffset_common_write ; Store and return | |
465 | |
466 do_logoffset_plus1: | |
467 call do_logoffset_common_read ; Read into lo:hi | |
468 movlw d'1' | |
469 addwf lo | |
470 movlw d'0' | |
471 addwfc hi | |
472 goto do_logoffset_common_write ; Store and return | |
473 | |
474 do_logoffset_plus10: | |
475 call do_logoffset_common_read ; Read into lo:hi | |
476 movlw d'10' | |
477 addwf lo | |
478 movlw d'0' | |
479 addwfc hi | |
480 goto do_logoffset_common_write ; Store and return | |
481 | |
482 do_dispsets_menu_3stack: | |
50 | 483 bcf in_color_menu |
0 | 484 call menu_processor_pop |
485 call menu_processor_pop | |
486 | |
487 do_dispsets_menu: | |
50 | 488 MENU_BEGIN tDispSets, .7 |
0 | 489 MENU_OPTION tBright, oBrightness, 0 |
490 MENU_OPTION tUnits, oUnits, 0 | |
491 MENU_CALL tLogOffset, do_log_offset_menu | |
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
18
diff
changeset
|
492 MENU_OPTION tSamplingrate,oSamplingRate,0 |
0 | 493 MENU_OPTION tDvSalinity,oDiveSalinity, 0 |
50 | 494 MENU_CALL tColorScheme, do_color_scheme |
0 | 495 MENU_CALL tExit, do_return_settings |
496 MENU_END | |
497 | |
50 | 498 |
499 extern oColorSetDive | |
500 do_color_scheme: | |
501 bsf in_color_menu | |
502 MENU_BEGIN tColorScheme, .2 | |
503 MENU_OPTION tColorSetDive,oColorSetDive, 0 | |
504 MENU_CALL tExit, do_dispsets_menu_3stack | |
505 MENU_END | |
506 | |
507 | |
0 | 508 ;============================================================================= |
509 | |
510 global new_battery_menu | |
511 new_battery_menu: | |
512 bsf enable_screen_dumps ; To prevent exiting into COMM mode immediately | |
513 call TFT_boot ; Initialize TFT (includes clear screen) | |
514 call TFT_Display_FadeIn ; Show splash | |
515 movlw .100 | |
516 movwf batt_percent ; make sure to reset batt_percent | |
517 | |
518 ; Default (In cases of timeout or USB): Use old battery | |
519 clrf EEADRH | |
520 read_int_eeprom 0x07 | |
521 movff EEDATA,battery_gauge+0 | |
522 read_int_eeprom 0x08 | |
523 movff EEDATA,battery_gauge+1 | |
524 read_int_eeprom 0x09 | |
525 movff EEDATA,battery_gauge+2 | |
526 read_int_eeprom 0x0A | |
527 movff EEDATA,battery_gauge+3 | |
528 read_int_eeprom 0x0B | |
529 movff EEDATA,battery_gauge+4 | |
530 read_int_eeprom 0x0C | |
531 movff EEDATA,battery_gauge+5 | |
532 | |
76 | 533 call menu_processor_reset ; restart from first icon. |
534 | |
0 | 535 MENU_BEGIN tNewBattTitle, .3 |
536 MENU_CALL tNewBattOld, use_old_batteries | |
537 MENU_CALL tNewBattNew36, use_new_36V_batteries | |
538 MENU_CALL tNewBattNew15, use_new_15V_batteries | |
539 MENU_END | |
540 | |
541 global use_old_batteries | |
542 use_old_batteries: | |
543 clrf EEADRH | |
544 read_int_eeprom 0x07 | |
545 movff EEDATA,battery_gauge+0 | |
546 read_int_eeprom 0x08 | |
547 movff EEDATA,battery_gauge+1 | |
548 read_int_eeprom 0x09 | |
549 movff EEDATA,battery_gauge+2 | |
550 read_int_eeprom 0x0A | |
551 movff EEDATA,battery_gauge+3 | |
552 read_int_eeprom 0x0B | |
553 movff EEDATA,battery_gauge+4 | |
554 read_int_eeprom 0x0C | |
555 movff EEDATA,battery_gauge+5 | |
556 movlw .100 | |
557 movwf batt_percent ; To have 1,5V batteries right after firmware update | |
558 goto power_on_return | |
559 | |
560 use_new_15V_batteries: | |
561 use_new_36V_batteries: | |
562 call reset_battery_pointer ; Resets battery pointer 0x07-0x0C and battery_gauge:5 | |
563 goto power_on_return | |
564 | |
565 END |