Mercurial > public > hwos_code
annotate src/menu_tree.asm @ 355:093b32bf6db2
hud v3 support
author | heinrichsweikamp |
---|---|
date | Fri, 31 Jul 2015 17:44:03 +0200 |
parents | 3f2d0c0bc101 |
children | 2be48ccfa9de |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File menu_tree.asm | |
4 ; | |
275 | 5 ; OSTC menus |
0 | 6 ; |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-07-11 : [jDG] Creation. | |
11 | |
275 | 12 #include "hwos.inc" ; Mandatory header |
0 | 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" | |
355 | 25 #include "wait.inc" |
0 | 26 |
174
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
27 CBLOCK tmp+0x40 ; Keep space for menu processor |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
28 gaslist_gas ; Check ram position in gaslist.asm, too! |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
29 ENDC |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
30 |
0 | 31 gui CODE |
32 ;============================================================================= | |
33 ; Main Menu | |
66
00636132cca6
BUGFIX: Maintain last selected customview in surface mode
heinrichsweikamp
parents:
64
diff
changeset
|
34 global do_main_menu,do_main_menu2 |
0 | 35 do_main_menu: |
39
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
23
diff
changeset
|
36 movff menupos3,customview_surfmode; save last customview |
66
00636132cca6
BUGFIX: Maintain last selected customview in surface mode
heinrichsweikamp
parents:
64
diff
changeset
|
37 do_main_menu2: |
0 | 38 bcf sleepmode ; for timeout |
39 call menu_processor_reset ; restart from first icon. | |
40 | |
41 do_continue_main_menu: | |
42 call menu_processor_pop ; drop exit line. | |
43 call menu_processor_pop ; back to last icon. | |
44 | |
45 extern do_demo_divemode, restart | |
46 MENU_BEGIN tMainMenu, .7 | |
47 MENU_CALL tLogbook, logbook | |
48 MENU_CALL tGasSetup, do_gas_menu | |
49 MENU_CALL tCCRSetup, do_ccr_menu | |
50 MENU_CALL tPlan, do_planner_menu_reset | |
51 MENU_CALL tDiveModeMenu, do_divemode_menu | |
52 MENU_CALL tSystSets, do_settings_menu | |
53 MENU_CALL tExit, restart | |
54 MENU_END | |
55 | |
56 do_info_menu: | |
62 | 57 MENU_BEGIN tInfoMenu, .5 |
0 | 58 MENU_DYNAMIC info_menu_serial, 0 |
59 MENU_DYNAMIC info_menu_firmware, 0 | |
60 MENU_DYNAMIC info_menu_total_dives, 0 | |
62 | 61 MENU_DYNAMIC info_menu_battery_volts,0 |
0 | 62 MENU_CALL tExit, do_return_settings |
63 MENU_END | |
64 | |
65 ;============================================================================= | |
66 ; CCR Setup | |
67 | |
68 return_ccr_menu: | |
69 call menu_processor_pop ; drop exit line. | |
70 call menu_processor_pop ; back to last gas. | |
71 | |
72 do_ccr_menu: | |
113 | 73 bcf menu_show_sensors ; Clear flag |
74 bcf menu_show_sensors2 ; Clear flag | |
236 | 75 btfsc analog_o2_input |
240 | 76 bra do_ccr_menu_cR |
77 btfss optical_input | |
78 bra do_ccr_menu_ostc2 | |
79 | |
80 MENU_BEGIN tCCRSetup, .5 ; OSTC3 menu | |
174
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
81 MENU_OPTION tCCRMode, oCCRMode, 0 |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
82 MENU_CALL tCCRSensor, do_ccr_sensor |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
83 MENU_CALL tDiluentSetup, do_diluent_setup |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
84 MENU_CALL tFixedSetpoints, do_fixed_setpoints |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
85 MENU_CALL tExit, do_continue_main_menu |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
86 MENU_END |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
87 |
240 | 88 do_ccr_menu_cR: ; cR menu |
113 | 89 MENU_BEGIN tCCRSetup, .6 |
0 | 90 MENU_OPTION tCCRMode, oCCRMode, 0 |
91 MENU_CALL tCCRSensor, do_ccr_sensor | |
113 | 92 MENU_CALL tCalibrateMenu, do_calibrate_menu |
0 | 93 MENU_CALL tDiluentSetup, do_diluent_setup |
94 MENU_CALL tFixedSetpoints, do_fixed_setpoints | |
95 MENU_CALL tExit, do_continue_main_menu | |
96 MENU_END | |
97 | |
240 | 98 do_ccr_menu_ostc2: |
99 MENU_BEGIN tCCRSetup, .3 ; ostc2 menu | |
100 MENU_CALL tDiluentSetup, do_diluent_setup | |
101 MENU_CALL tFixedSetpoints, do_fixed_setpoints | |
102 MENU_CALL tExit, do_continue_main_menu | |
103 MENU_END | |
104 | |
105 | |
113 | 106 do_calibrate_menu: |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
174
diff
changeset
|
107 call enable_ir_s8 ; Enable IR/S8-Port |
113 | 108 bsf menu_show_sensors2 ; Set flag |
109 do_calibrate_menu2: | |
110 MENU_BEGIN tCalibrateMenu, .6 | |
111 MENU_CALL tDiveHudMask1, 0 | |
112 MENU_CALL tDiveHudMask2, 0 | |
113 MENU_CALL tDiveHudMask3, 0 | |
114 MENU_OPTION tCalibrationGas,oCalGasO2, 0 | |
115 MENU_CALL tCalibrate, do_calibrate_mix | |
116 MENU_CALL tExit, return_ccr_menu | |
117 MENU_END | |
118 | |
119 do_calibrate_mix: | |
120 extern calibrate_mix | |
121 call calibrate_mix ; Calibrate with opt_calibration_O2_ratio, also calibrate S8 HUD if connected | |
355 | 122 WAITMS d'250' ; Wait for HUD v3 |
113 | 123 goto restart ; Restart into surface mode |
124 | |
0 | 125 do_ccr_sensor: |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
174
diff
changeset
|
126 call enable_ir_s8 ; Enable IR/S8-Port |
0 | 127 bsf menu_show_sensors ; Set flag |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
144
diff
changeset
|
128 MENU_BEGIN tCCRSensor, .5 |
0 | 129 MENU_CALL tDiveHudMask1, 0 |
130 MENU_CALL tDiveHudMask2, 0 | |
131 MENU_CALL tDiveHudMask3, 0 | |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
144
diff
changeset
|
132 MENU_OPTION tSensorFallback,oSensorFallback, 0 |
0 | 133 MENU_CALL tExit, return_ccr_menu |
134 MENU_END | |
135 | |
136 do_diluent_setup: | |
137 bsf ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10") | |
139 | 138 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint |
0 | 139 call gaslist_cleanup_list ; Takes care that only one gas can be first and first has 0m change depth |
140 MENU_BEGIN tDiluentSetup, .6 | |
141 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
142 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
143 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
144 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
145 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
146 MENU_CALL tExit, return_ccr_menu | |
147 MENU_END | |
148 | |
149 do_return_fixed_setpoints: | |
150 call menu_processor_pop ; drop exit line. | |
151 call menu_processor_pop ; back to last gas. | |
152 | |
153 do_fixed_setpoints: | |
139 | 154 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint |
0 | 155 MENU_BEGIN tFixedSetpoints, .6 |
156 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
157 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
158 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
159 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
160 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu | |
161 MENU_CALL tExit, return_ccr_menu | |
162 MENU_END | |
163 | |
164 do_edit_sp_menu: | |
165 call gaslist_setSP ; Save current item. | |
166 MENU_BEGIN tFixedSetpoints, .5 | |
167 MENU_DYNAMIC gaslist_strcat_setpoint_0,0 | |
168 MENU_CALL tSPPlus, gaslist_spplus | |
169 MENU_CALL tDepthPlus, gaslist_spdepthplus | |
170 MENU_CALL tDepthMinus, gaslist_spdepthminus | |
171 MENU_CALL tExit, do_return_fixed_setpoints | |
172 MENU_END | |
173 | |
174 ;============================================================================= | |
175 ; OC Gas Setup | |
176 | |
177 return_gas_menu: | |
178 call menu_processor_pop ; drop exit line. | |
179 call menu_processor_pop ; back to last gas. | |
180 | |
181 btfsc ccr_diluent_setup ; Return to CCR-Menu? | |
182 bra do_diluent_setup ; Yes. | |
183 do_gas_menu: | |
184 bcf ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10") | |
139 | 185 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint |
0 | 186 call gaslist_cleanup_list ; Takes care that only one gas can be first and first has 0m change depth |
187 MENU_BEGIN tGaslist, .6 | |
188 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
189 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
190 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
191 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
192 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu | |
193 MENU_CALL tExit, do_continue_main_menu | |
194 MENU_END | |
195 | |
196 return_gas_depth: | |
197 call menu_processor_pop ; drop exit line. | |
198 call menu_processor_pop ; back to last gas. | |
199 bra do_edit_gas_menu_1 | |
200 | |
201 do_edit_gas_menu: | |
202 call gaslist_setgas ; Save current item. | |
203 do_edit_gas_menu_1: ; Keep current gas. | |
204 MENU_BEGIN tGasEdit, .6 | |
205 MENU_DYNAMIC gaslist_gastitle, 0 | |
206 MENU_DYNAMIC gaslist_MOD_END, 0 | |
207 MENU_DYNAMIC gaslist_show_type, gaslist_toggle_type | |
208 MENU_CALL tSetup_mix, do_setup_mix | |
209 MENU_CALL tGasDepth, do_gas_depth_menu | |
210 MENU_CALL tExit, return_gas_menu | |
211 MENU_END | |
212 | |
213 do_setup_mix: | |
214 MENU_BEGIN tGasEdit, .7 | |
215 MENU_DYNAMIC gaslist_gastitle, 0 | |
216 MENU_DYNAMIC gaslist_MOD_END, 0 | |
217 MENU_CALL tO2Plus, gaslist_pO2 | |
218 MENU_CALL tO2Minus, gaslist_mO2 | |
219 MENU_CALL tHePlus, gaslist_pHe | |
220 MENU_CALL tHeMinus, gaslist_mHe | |
221 MENU_CALL tExit, return_gas_depth | |
222 MENU_END | |
223 | |
224 global do_gas_depth_menu | |
225 do_gas_depth_menu: | |
174
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
226 movff gaslist_gas,WREG |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
227 lfsr FSR1,opt_gas_type ; Read opt_gas_type[WREG] |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
228 movff PLUSW1,lo ; Used as temp |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
229 movlw .3 ; 3=Deco |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
230 btfsc ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10") |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
231 movlw .2 ; 2=Normal |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
232 cpfseq lo |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
233 bra return_gas_depth ; Non-Deco gas or "Normal" Diluent, Return! |
932e91074bdb
CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents:
155
diff
changeset
|
234 |
154
afa31c815f24
NEW: Show ppO2 for change depth during gas setup
heinrichsweikamp
parents:
148
diff
changeset
|
235 MENU_BEGIN tGasEdit, .7 |
0 | 236 MENU_DYNAMIC gaslist_gastitle, 0 |
237 MENU_DYNAMIC gaslist_MOD_END, 0 | |
154
afa31c815f24
NEW: Show ppO2 for change depth during gas setup
heinrichsweikamp
parents:
148
diff
changeset
|
238 MENU_DYNAMIC gaslist_ppo2, 0 ; ppO2 at change depth |
0 | 239 MENU_CALL tDepthPlus, gaslist_pDepth |
240 MENU_CALL tDepthMinus, gaslist_mDepth | |
241 MENU_DYNAMIC gaslist_reset_mod_title,gaslist_reset_mod | |
242 MENU_CALL tExit, return_gas_depth | |
243 MENU_END | |
244 | |
245 ;============================================================================= | |
246 ; Simulator menus | |
247 | |
248 global do_planner_menu | |
249 | |
250 do_planner_menu_reset: | |
251 extern option_save_all | |
252 call option_save_all | |
253 ;---- Reset dive time/depth to default values | |
254 extern option_reset | |
255 lfsr FSR0,odiveInterval | |
256 call option_reset | |
257 lfsr FSR0,obottomTime | |
258 call option_reset | |
259 lfsr FSR0,obottomDepth | |
260 call option_reset | |
261 | |
262 do_planner_menu: | |
263 extern do_demo_planner | |
298
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
264 MENU_BEGIN tPlan, .7 |
0 | 265 MENU_CALL tInter, do_demo_divemode |
266 MENU_OPTION tIntvl, odiveInterval, 0 | |
267 MENU_OPTION tBtTm, obottomTime, 0 | |
268 MENU_OPTION tMxDep, obottomDepth, 0 | |
269 MENU_CALL tDeco, do_demo_planner | |
298
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
270 MENU_CALL tSystSets, do_planner_config |
0 | 271 MENU_CALL tExit, do_continue_main_menu |
272 MENU_END | |
273 | |
298
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
274 do_planner_config: |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
275 MENU_BEGIN tPlan, .3 |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
276 MENU_OPTION tSetBotUse, obottom_usage, 0 |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
277 MENU_OPTION tSetDecoUse, odeco_usage, 0 |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
278 MENU_CALL tExit, do_planner_menu |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
279 MENU_END |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
280 |
2fe34fc0e2ae
new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents:
275
diff
changeset
|
281 |
0 | 282 ;============================================================================= |
283 ; Divemode menu | |
284 | |
285 do_return_divemode_menu: | |
286 call menu_processor_pop ; drop exit line. | |
287 call menu_processor_pop ; back to last gas. | |
288 | |
289 do_divemode_menu: | |
290 MENU_BEGIN tDiveModeMenu, .7 | |
291 MENU_OPTION tDvMode, oDiveMode, 0 | |
292 MENU_OPTION tDkMode, oDecoMode, 0 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
293 MENU_CALL tppO2settings, do_ppo2_menu |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
294 MENU_OPTION tsafetystopmenu,oSafetyStop, 0 |
0 | 295 MENU_OPTION tFTTSMenu, oExtraTime,0 |
296 MENU_CALL tDecoparameters, do_decoparameters_menu | |
297 MENU_CALL tExit, do_continue_main_menu | |
298 MENU_END | |
299 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
300 do_ppo2_menu: |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
301 MENU_BEGIN tppO2settings, .4 |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
302 MENU_DYNAMIC divesets_ppo2_max, do_toggle_ppo2_max |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
303 MENU_DYNAMIC divesets_ppo2_min, do_toggle_ppo2_min |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
304 MENU_OPTION tShowppO2, oShowppO2, 0 |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
305 MENU_CALL tExit, do_return_divemode_menu |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
306 MENU_END |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
90
diff
changeset
|
307 |
0 | 308 do_return_decoparameters_menu: |
309 call menu_processor_pop ; drop exit line. | |
310 call menu_processor_pop ; back to setting | |
311 do_decoparameters_menu: | |
312 MENU_BEGIN tDecoparameters, .7 | |
313 MENU_OPTION tGF_low, oGF_low, 0 | |
314 MENU_OPTION tGF_high, oGF_high, 0 | |
315 MENU_CALL taGFMenu, do_aGF_menu | |
316 MENU_OPTION tSaturationMult,osatmult, 0 | |
317 MENU_OPTION tDesaturationMult,odesatmult,0 | |
318 MENU_OPTION tLastDecostop,oLastDeco, 0 | |
319 MENU_CALL tExit, do_return_divemode_menu | |
320 MENU_END | |
321 | |
322 do_aGF_menu: | |
323 MENU_BEGIN taGFMenu, .4 | |
324 MENU_OPTION taGF_enable,oEnable_aGF, 0 | |
325 MENU_OPTION taGF_low, oaGF_low, 0 | |
326 MENU_OPTION taGF_high, oaGF_high, 0 | |
327 MENU_CALL tExit, do_return_decoparameters_menu | |
328 MENU_END | |
329 ;============================================================================= | |
330 ; Setup Menu | |
331 | |
332 do_return_settings: | |
333 bcf settime_setdate ; Clear flag | |
334 call menu_processor_pop ; Drop exit entry | |
335 call menu_processor_pop ; Pop return line. | |
336 | |
337 extern compass_calibration_loop | |
338 do_settings_menu: | |
345 | 339 btfsc ble_available ; ble available |
340 bra do_settings_menu_ble ; Yes. | |
341 MENU_BEGIN tSystSets, .6 | |
0 | 342 MENU_CALL tInfoMenu, do_info_menu |
343 MENU_CALL tSetTimeDate, do_date_time_menu | |
344 MENU_CALL tDispSets, do_dispsets_menu | |
345 MENU_OPTION tLanguage, oLanguage, 0 | |
155
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
346 MENU_CALL tMore, do_settings_menu_more |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
347 MENU_CALL tExit, do_continue_main_menu |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
348 MENU_END |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
349 |
345 | 350 do_settings_menu_ble: |
351 MENU_BEGIN tSystSets, .7 | |
352 MENU_CALL tInfoMenu, do_info_menu | |
353 MENU_CALL tBleTitle, comm_mode0 | |
354 MENU_CALL tSetTimeDate, do_date_time_menu | |
355 MENU_CALL tDispSets, do_dispsets_menu | |
356 MENU_OPTION tLanguage, oLanguage, 0 | |
357 MENU_CALL tMore, do_settings_menu_more | |
358 MENU_CALL tExit, do_continue_main_menu | |
359 MENU_END | |
326
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
360 |
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
361 do_return_settings_more: |
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
362 call menu_processor_pop ; Drop exit entry |
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
363 call menu_processor_pop ; Pop return line. |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
364 |
155
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
365 do_settings_menu_more: |
243 | 366 btfsc rechargeable ; piezo buttons available |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
243
diff
changeset
|
367 bra do_settings_menu_more_piezo |
243 | 368 btfsc ble_available ; ble available |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
243
diff
changeset
|
369 bra do_settings_menu_more_ostc3p |
345 | 370 MENU_BEGIN tSystSets, .7 |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
371 MENU_CALL tCompassMenu, do_compass_menu |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
372 MENU_CALL tLogOffset, do_log_offset_menu |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
373 MENU_OPTION tUnits, oUnits, 0 |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
374 MENU_OPTION tSamplingrate,oSamplingRate,0 |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
375 MENU_OPTION tDvSalinity,oDiveSalinity, 0 |
345 | 376 MENU_CALL tResetMenu, do_reset_menu |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
377 MENU_CALL tExit, do_return_settings |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
378 MENU_END |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
379 |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
243
diff
changeset
|
380 do_settings_menu_more_piezo: |
218 | 381 MENU_BEGIN tSystSets, .7 |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
382 MENU_CALL tCompassMenu, do_compass_menu |
155
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
383 MENU_CALL tLogOffset, do_log_offset_menu |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
384 MENU_OPTION tUnits, oUnits, 0 |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
385 MENU_OPTION tSamplingrate,oSamplingRate,0 |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
386 MENU_OPTION tDvSalinity,oDiveSalinity, 0 |
345 | 387 MENU_CALL tMore, do_settings_piezo_menu |
155
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
388 MENU_CALL tExit, do_return_settings |
0 | 389 MENU_END |
390 | |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
391 extern comm_mode0 |
243 | 392 |
345 | 393 do_settings_piezo_menu: |
394 ; Menu with features only available in piezo button hardware | |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
395 MENU_BEGIN tSystSets, .4 |
345 | 396 MENU_CALL tResetMenu, do_reset_menu |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
397 MENU_OPTION tButtonleft,ocR_button_left ,0 ; left button sensitivity |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
398 MENU_OPTION tButtonright,ocR_button_right,0 ; right button sensitivity |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
243
diff
changeset
|
399 MENU_CALL tExit, do_settings_menu_more_piezo |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
400 MENU_END |
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
401 |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
243
diff
changeset
|
402 do_settings_menu_more_ostc3p: ; Menu with BLE feature |
243 | 403 MENU_BEGIN tSystSets, .7 |
404 MENU_CALL tCompassMenu, do_compass_menu | |
405 MENU_CALL tLogOffset, do_log_offset_menu | |
406 MENU_OPTION tUnits, oUnits, 0 | |
407 MENU_OPTION tSamplingrate,oSamplingRate,0 | |
408 MENU_OPTION tDvSalinity,oDiveSalinity, 0 | |
345 | 409 MENU_CALL tResetMenu, do_reset_menu |
243 | 410 MENU_CALL tExit, do_return_settings |
411 MENU_END | |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
412 |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
413 do_compass_menu: |
90
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
78
diff
changeset
|
414 MENU_BEGIN tSystSets, .2 |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
415 MENU_CALL tCompassMenu, compass_calibration_loop |
90
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
78
diff
changeset
|
416 ; MENU_OPTION tCompassGain, oCompassGain, 0 |
326
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
417 MENU_CALL tExit, do_return_settings_more |
18
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
418 MENU_END |
4e3f133dfbf4
add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents:
0
diff
changeset
|
419 |
0 | 420 ;============================================================================= |
421 ; Reset and confirmation menu. | |
422 | |
423 do_reset_menu: | |
63 | 424 MENU_BEGIN tResetMenu, .6 |
0 | 425 MENU_CALL tExit, do_return_settings |
426 MENU_CALL tReboot, do_reset_menu2 ; Confirm | |
427 MENU_CALL tResetDeco, do_reset_menu3 ; Confirm | |
428 MENU_CALL tResetSettings, do_reset_menu4 ; Confirm | |
63 | 429 MENU_CALL tResetLogbook, do_reset_menu5 ; Confirm |
0 | 430 MENU_CALL tResetBattery, new_battery_menu ; New Battery submenu |
431 MENU_END | |
432 | |
433 do_reset_menu2: | |
434 MENU_BEGIN tResetMenu2, .2 | |
435 MENU_CALL tAbort, do_continue_menu_3stack | |
436 MENU_CALL tReboot, do_reboot ; Reboot | |
437 MENU_END | |
438 | |
439 do_reset_menu3: | |
440 MENU_BEGIN tResetMenu2, .2 | |
441 MENU_CALL tAbort, do_continue_menu_3stack | |
442 MENU_CALL tResetDeco, do_reset_deco ; Reset Deco | |
443 MENU_END | |
444 | |
445 do_reset_menu4: | |
446 MENU_BEGIN tResetMenu2, .2 | |
447 MENU_CALL tAbort, do_continue_menu_3stack | |
448 MENU_CALL tResetSettings, do_reset_settings ; Reset all settings | |
449 MENU_END | |
450 | |
63 | 451 do_reset_menu5: |
452 MENU_BEGIN tResetMenu2, .2 | |
453 MENU_CALL tAbort, do_continue_menu_3stack | |
454 MENU_CALL tResetLogbook, do_reset_logbook ; Reset logbook | |
455 MENU_END | |
456 | |
457 do_reset_logbook: | |
458 clrf EEADRH ; Make sure to select eeprom bank 0 | |
459 clrf EEDATA | |
78
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
460 read_int_eeprom .2 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
461 write_int_eeprom .15 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
462 read_int_eeprom .3 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
463 write_int_eeprom .16 ; Copy number of dives |
144 | 464 clrf EEDATA |
78
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
465 write_int_eeprom .2 |
668b432dcae9
BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents:
76
diff
changeset
|
466 write_int_eeprom .3 ; Clear total dives |
63 | 467 write_int_eeprom .4 |
468 write_int_eeprom .5 | |
469 write_int_eeprom .6 ; Reset logbook pointers | |
470 call ext_flash_erase_logbook ; And complete logbook (!) | |
471 goto do_continue_main_menu ; back to menu | |
472 | |
0 | 473 |
474 do_reset_deco: | |
475 movlw d'79' ; 79% N2 | |
476 movff WREG,char_I_N2_ratio | |
477 movlw d'0' | |
478 movff WREG,char_I_step_is_1min ; 2 second deco mode | |
479 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy for deco routine | |
480 movff int_I_pres_respiration+0,int_I_pres_surface+0 ; copy for desat routine | |
481 movff int_I_pres_respiration+1,int_I_pres_surface+1 | |
482 | |
483 extern deco_reset | |
484 call deco_reset | |
485 call deco_calc_desaturation_time ; calculate desaturation time | |
486 banksel common | |
487 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode | |
488 banksel common | |
489 clrf nofly_time+0 ; Reset NoFly | |
490 clrf nofly_time+1 | |
491 clrf desaturation_time+0 ; Reset Desat | |
492 clrf desaturation_time+1 | |
493 goto do_return_settings ; back to menu | |
494 | |
495 do_reset_settings: | |
139 | 496 banksel common |
0 | 497 extern option_reset_all |
498 call option_reset_all ; Reset all options to factory default. | |
76 | 499 goto restart ; Restart into surfacemode |
0 | 500 |
501 do_continue_menu_3stack: ; Return three levels deep | |
502 call menu_processor_pop | |
503 goto do_return_settings | |
504 | |
505 do_reboot: | |
506 call ext_flash_enable_protection ; Enables write protection | |
507 reset | |
508 | |
509 | |
510 do_date_time_menu: | |
511 MENU_BEGIN tSetTimeDate, .4 | |
512 MENU_CALL tSetTime, do_time_menu | |
513 MENU_CALL tSetDate, do_date_menu | |
514 MENU_OPTION tDateFormat,oDateFormat, 0 | |
515 MENU_CALL tExit, do_return_settings | |
516 MENU_END | |
517 | |
518 do_date_menu: | |
519 bsf settime_setdate | |
520 MENU_BEGIN tSetDate, .4 | |
521 MENU_OPTION tSetDay, oSetDay, 0 | |
50 | 522 MENU_OPTION tSetMonth, oSetMonth, 0 |
0 | 523 MENU_OPTION tSetYear, oSetYear, 0 |
524 MENU_CALL tExit, do_continue_menu_3stack | |
525 MENU_END | |
526 | |
527 | |
528 do_reset_seconds: | |
529 clrf secs | |
530 extern rtc_set_rtc | |
531 call rtc_set_rtc ; writes mins,sec,hours,day,month and year to rtc module | |
532 do_time_menu: | |
533 bsf settime_setdate | |
534 MENU_BEGIN tSetTime, .4 | |
535 MENU_OPTION tSetHours, oSetHours, 0 | |
536 MENU_OPTION tSetMinutes,oSetMinutes, 0 | |
537 MENU_CALL tSetSeconds, do_reset_seconds | |
538 MENU_CALL tExit, do_continue_menu_3stack | |
539 MENU_END | |
540 | |
541 | |
542 do_toggle_ppo2_max: ; add 0.1bar, with hard-coded max. | |
543 movff opt_ppO2_max,lo ; banksafe | |
544 movlw .10 | |
545 addwf lo,F | |
546 movlw ppo2_highest_setting | |
547 cpfsgt lo | |
548 bra do_toggle_ppo2_max2 | |
549 movlw .120 | |
550 movwf lo | |
551 do_toggle_ppo2_max2: | |
552 movff lo,opt_ppO2_max | |
553 return | |
554 | |
555 do_toggle_ppo2_min: ; sub 0.1bar, with hard-coded min. | |
556 movff opt_ppO2_min,lo ; banksafe | |
557 incf lo,F | |
558 movlw .21 | |
559 cpfsgt lo | |
560 bra do_toggle_ppo2_min2 | |
561 movlw ppo2_lowest_setting | |
562 movwf lo | |
563 do_toggle_ppo2_min2: | |
564 movff lo,opt_ppO2_min | |
565 return | |
566 | |
567 | |
568 ; Logbook offset sub-menu | |
569 do_log_offset_menu: | |
570 MENU_BEGIN tLogOffset, .6 | |
571 MENU_DYNAMIC TFT_LogOffset_Logtitle, 0 | |
572 MENU_CALL tLogOffsetp1, do_logoffset_plus1 | |
573 MENU_CALL tLogOffsetp10, do_logoffset_plus10 | |
574 MENU_CALL tLogOffsetm1, do_logoffset_minus1 | |
575 MENU_CALL tLogOffsetm10, do_logoffset_minus10 | |
326
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
576 MENU_CALL tExit, do_return_settings_more |
0 | 577 MENU_END |
578 | |
579 | |
580 do_logoffset_minus1: | |
581 call do_logoffset_common_read ; Read into lo:hi | |
582 movlw d'1' | |
583 subwf lo | |
584 movlw d'0' | |
585 subwfb hi | |
586 btfss hi,7 ; <0? | |
587 goto do_logoffset_common_write ; Store and return | |
588 clrf lo | |
589 clrf hi | |
590 goto do_logoffset_common_write ; Store and return | |
591 | |
592 do_logoffset_minus10: | |
593 call do_logoffset_common_read ; Read into lo:hi | |
594 movlw d'10' | |
595 subwf lo | |
596 movlw d'0' | |
597 subwfb hi | |
598 btfss hi,7 ; <0? | |
599 goto do_logoffset_common_write ; Store and return | |
600 clrf lo | |
601 clrf hi | |
602 goto do_logoffset_common_write ; Store and return | |
603 | |
604 do_logoffset_plus1: | |
605 call do_logoffset_common_read ; Read into lo:hi | |
148 | 606 infsnz lo,F |
607 incf hi,F | |
0 | 608 goto do_logoffset_common_write ; Store and return |
609 | |
610 do_logoffset_plus10: | |
611 call do_logoffset_common_read ; Read into lo:hi | |
612 movlw d'10' | |
613 addwf lo | |
614 movlw d'0' | |
615 addwfc hi | |
616 goto do_logoffset_common_write ; Store and return | |
617 | |
618 do_dispsets_menu_3stack: | |
50 | 619 bcf in_color_menu |
0 | 620 call menu_processor_pop |
621 call menu_processor_pop | |
622 | |
623 do_dispsets_menu: | |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
624 MENU_BEGIN tDispSets, .5 |
303
9b1b0b32e7d5
Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents:
298
diff
changeset
|
625 MENU_OPTION tBright, oBrightness, 0 |
9b1b0b32e7d5
Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents:
298
diff
changeset
|
626 MENU_CALL tColorScheme, do_color_scheme |
9b1b0b32e7d5
Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents:
298
diff
changeset
|
627 MENU_OPTION tFlip, oFlipScreen, 0 |
335
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
628 MENU_CALL tMore, do_dispsets_menu_more |
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
629 MENU_CALL tExit, do_return_settings |
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
630 MENU_END |
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
631 |
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
632 do_dispsets_menu_more: |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
633 MENU_BEGIN tDispSets, .4 |
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
634 MENU_OPTION tMODwarning, oMODwarning, 0 |
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
635 MENU_OPTION tVSItext2, oVSItextv2, 0 |
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
636 MENU_OPTION tVSIgraph, oVSIgraph, 0 |
335
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
333
diff
changeset
|
637 MENU_CALL tExit, do_dispsets_menu_3stack |
0 | 638 MENU_END |
639 | |
50 | 640 extern oColorSetDive |
641 do_color_scheme: | |
642 bsf in_color_menu | |
643 MENU_BEGIN tColorScheme, .2 | |
644 MENU_OPTION tColorSetDive,oColorSetDive, 0 | |
645 MENU_CALL tExit, do_dispsets_menu_3stack | |
646 MENU_END | |
647 | |
648 | |
0 | 649 ;============================================================================= |
650 | |
651 global new_battery_menu | |
652 new_battery_menu: | |
653 bsf enable_screen_dumps ; To prevent exiting into COMM mode immediately | |
654 call TFT_boot ; Initialize TFT (includes clear screen) | |
655 call TFT_Display_FadeIn ; Show splash | |
656 movlw .100 | |
657 movwf batt_percent ; make sure to reset batt_percent | |
658 | |
659 ; Default (In cases of timeout or USB): Use old battery | |
660 clrf EEADRH | |
661 read_int_eeprom 0x07 | |
662 movff EEDATA,battery_gauge+0 | |
663 read_int_eeprom 0x08 | |
664 movff EEDATA,battery_gauge+1 | |
665 read_int_eeprom 0x09 | |
666 movff EEDATA,battery_gauge+2 | |
667 read_int_eeprom 0x0A | |
668 movff EEDATA,battery_gauge+3 | |
669 read_int_eeprom 0x0B | |
670 movff EEDATA,battery_gauge+4 | |
671 read_int_eeprom 0x0C | |
672 movff EEDATA,battery_gauge+5 | |
673 | |
76 | 674 call menu_processor_reset ; restart from first icon. |
675 | |
0 | 676 MENU_BEGIN tNewBattTitle, .3 |
677 MENU_CALL tNewBattOld, use_old_batteries | |
678 MENU_CALL tNewBattNew36, use_new_36V_batteries | |
679 MENU_CALL tNewBattNew15, use_new_15V_batteries | |
680 MENU_END | |
681 | |
682 global use_old_batteries | |
683 use_old_batteries: | |
684 clrf EEADRH | |
685 read_int_eeprom 0x07 | |
686 movff EEDATA,battery_gauge+0 | |
687 read_int_eeprom 0x08 | |
688 movff EEDATA,battery_gauge+1 | |
689 read_int_eeprom 0x09 | |
690 movff EEDATA,battery_gauge+2 | |
691 read_int_eeprom 0x0A | |
692 movff EEDATA,battery_gauge+3 | |
693 read_int_eeprom 0x0B | |
694 movff EEDATA,battery_gauge+4 | |
695 read_int_eeprom 0x0C | |
696 movff EEDATA,battery_gauge+5 | |
697 movlw .100 | |
698 movwf batt_percent ; To have 1,5V batteries right after firmware update | |
699 goto power_on_return | |
700 | |
701 use_new_15V_batteries: | |
702 use_new_36V_batteries: | |
703 call reset_battery_pointer ; Resets battery pointer 0x07-0x0C and battery_gauge:5 | |
704 goto power_on_return | |
705 | |
706 END |