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