Mercurial > public > hwos_code
annotate src/divemenu_tree.asm @ 654:75e90cd0c2c3
hwOS sport 10.77 release
author | heinrichsweikamp |
---|---|
date | Thu, 14 Mar 2024 16:56:46 +0100 |
parents | bc214815deb2 |
children |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
640 | 3 ; File divemenu_tree.asm * combined next generation V3.12.3 |
0 | 4 ; |
275 | 5 ; OSTC dive mode menu |
0 | 6 ; |
654 | 7 ; Copyright (c) 2011, JD Gascuel, heinrichs weikamp gmbh, all rights reserved. |
0 | 8 ;============================================================================= |
9 ; HISTORY | |
10 ; 2013-02-02 : [mH] Made out of menu_tree.asm | |
11 | |
634 | 12 |
13 ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
14 ; | |
15 ; ATTENTION | |
16 ; | |
17 ; All Calls made via the Menu Macros need to go to Addresses within 0x0xxxx ! | |
18 ; | |
19 ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
20 | |
21 | |
22 #include "hwos.inc" | |
23 #include "shared_definitions.h" | |
582 | 24 #include "menu_processor.inc" |
25 #include "tft_outputs.inc" | |
26 #include "customview.inc" | |
27 #include "strings.inc" | |
28 #include "calibrate.inc" | |
634 | 29 #include "gaslist.inc" |
30 #include "colorschemes.inc" | |
0 | 31 |
560 | 32 |
634 | 33 extern diveloop_menu_exit |
34 | |
35 IFDEF _cave_mode | |
36 extern cavemode_turndive_check | |
37 extern cavemode_waypoint_set_check | |
38 extern cavemode_waypoint_out_check | |
39 extern cavemode_waypoint_in_check | |
40 ENDIF | |
41 | |
582 | 42 |
0 | 43 ;============================================================================= |
634 | 44 dive_menu CODE 0x02000 ; needs to be at 0x0xxxx |
45 ;============================================================================= | |
46 | |
47 | |
48 ;----------------------------------------------------------------------------- | |
49 ; Return to Main Dive Mode Menu | |
631 | 50 ; |
604 | 51 do_return_main_divemenu: |
52 call menu_processor_double_pop ; drop exit line and back to last line | |
53 incf selected_item,W ; item numbers start with 0, menu positions with 1 | |
623 | 54 movwf menu_pos_cur ; position cursor where we came from |
634 | 55 bra do_main_divemenu_common ; continue with common part |
56 | |
604 | 57 |
634 | 58 ;----------------------------------------------------------------------------- |
59 ; Entry Point for Main Dive Mode Menu | |
60 ; | |
582 | 61 global do_main_divemenu |
0 | 62 do_main_divemenu: |
631 | 63 movff active_customview,backup_customview ; back up current custom view |
64 call menu_processor_reset ; restart from first icon | |
65 movlw .1 ; set cursor to first menu item | |
66 movwf menu_pos_cur ; ... | |
634 | 67 ;bra do_main_divemenu_common ; continue with common part |
604 | 68 |
634 | 69 |
70 ;----------------------------------------------------------------------------- | |
71 ; Common Part for Main Dive Mode Menu, 1st Layer | |
72 ; | |
604 | 73 do_main_divemenu_common: |
623 | 74 IFDEF _ccr_pscr |
634 | 75 btfsc FLAG_ccr_mode ; in CCR mode? |
76 bra main_divemenu_loop ; YES - goto CCR / pSCR Menu menu | |
77 btfsc FLAG_pscr_mode ; in pSCR mode? | |
78 bra main_divemenu_loop ; YES - goto CCR / pSCR Menu menu | |
79 ENDIF ; _ccr_pscr | |
560 | 80 |
582 | 81 main_divemenu_OC: |
623 | 82 IFDEF _ccr_pscr |
83 bcf is_diluent_menu ; selecting OC gases ... | |
84 bcf is_bailout_menu ; ... not for bailout reason | |
634 | 85 ENDIF ; _ccr_pscr |
582 | 86 |
604 | 87 IFDEF _cave_mode |
631 | 88 TSTOSS opt_cave_mode ; cave mode switched on? |
89 bra main_divemenu_OC_nocave ; NO - use version without cave mode entry | |
90 ;bra main_divemenu_OC_cave ; YES - use version with cave mode entry | |
604 | 91 |
631 | 92 main_divemenu_OC_cave: |
643 | 93 MENU_BEGIN_DIVE tMainMenu, .6 |
604 | 94 MENU_CALL tDivemenu_Gaslist, do_divemode_gaslist |
95 MENU_CALL tDivemenu_ResetAvg, do_reset_average | |
634 | 96 MENU_DYNAMIC dyn_toggle_gf, do_toggle_gf |
604 | 97 MENU_CALL tDivemenu_Marker, do_set_marker |
631 | 98 MENU_CALL tCaveMode, do_main_cavemenu |
604 | 99 MENU_CALL tExit, do_exit_divemode_menu |
100 MENU_END | |
634 | 101 ENDIF ; _cave_mode |
604 | 102 |
631 | 103 main_divemenu_OC_nocave: |
643 | 104 MENU_BEGIN_DIVE tMainMenu, .5 |
604 | 105 MENU_CALL tDivemenu_Gaslist, do_divemode_gaslist |
106 MENU_CALL tDivemenu_ResetAvg, do_reset_average | |
634 | 107 MENU_DYNAMIC dyn_toggle_gf, do_toggle_gf |
604 | 108 MENU_CALL tDivemenu_Marker, do_set_marker |
109 MENU_CALL tExit, do_exit_divemode_menu | |
560 | 110 MENU_END |
0 | 111 |
623 | 112 IFDEF _ccr_pscr |
604 | 113 |
560 | 114 main_divemenu_loop: |
623 | 115 bsf is_diluent_menu ; selecting diluents ... |
116 bcf is_bailout_menu ; ... (definitely) not for bailout reason | |
631 | 117 btfsc FLAG_pscr_mode ; in pSCR mode? |
118 bra main_divemenu_pscr ; YES - show pSCR menu | |
582 | 119 |
643 | 120 MENU_BEGIN_DIVE tMainMenu, .6 |
604 | 121 MENU_CALL tDiveBailout, do_divemode_gaslist_bail |
122 MENU_CALL tDivemenu_Setpoint, do_divemode_splist | |
123 MENU_CALL tDivemenu_Diluent, do_divemode_gaslist | |
124 MENU_CALL tDivemenu_Avg_Mkr, do_reset_avg_set_mkr | |
634 | 125 MENU_DYNAMIC dyn_toggle_gf, do_toggle_gf |
604 | 126 MENU_CALL tExit, do_exit_divemode_menu |
582 | 127 MENU_END |
128 | |
623 | 129 |
485 | 130 main_divemenu_pscr: |
623 | 131 IFDEF _external_sensor |
634 | 132 btfsc ext_input_s8_ana ; do we have an S8/analog input (OSTC cR)? |
631 | 133 bra main_divemenu_pscr_sensors ; YES - do menu with calibration |
634 | 134 btfsc ext_input_optical ; do we have an optical input (OSTC 3)? |
631 | 135 bra main_divemenu_pscr_sensors ; YES - do menu with calibration |
634 | 136 ENDIF ; _external_sensor |
560 | 137 |
138 main_divemenu_pscr_no_sensors: | |
643 | 139 MENU_BEGIN_DIVE tMainMenu, .6 |
604 | 140 MENU_CALL tDiveBailout, do_divemode_gaslist_bail |
141 MENU_CALL tDivemenu_Premix, do_divemode_gaslist | |
142 MENU_CALL tBackToLoop, do_switch_sp_calc | |
143 MENU_CALL tDivemenu_Avg_Mkr, do_reset_avg_set_mkr | |
634 | 144 MENU_DYNAMIC dyn_toggle_gf, do_toggle_gf |
604 | 145 MENU_CALL tExit, do_exit_divemode_menu |
582 | 146 MENU_END |
147 | |
634 | 148 IFDEF _external_sensor |
631 | 149 main_divemenu_pscr_sensors: |
643 | 150 MENU_BEGIN_DIVE tMainMenu, .6 |
604 | 151 MENU_CALL tDiveBailout, do_divemode_gaslist_bail |
640 | 152 MENU_CALL tCCRModeSensor, do_divemode_setpoint_pscr |
604 | 153 MENU_CALL tDivemenu_Premix, do_divemode_gaslist |
154 MENU_CALL tDivemenu_Avg_Mkr, do_reset_avg_set_mkr | |
634 | 155 MENU_DYNAMIC dyn_toggle_gf, do_toggle_gf |
604 | 156 MENU_CALL tExit, do_exit_divemode_menu |
582 | 157 MENU_END |
623 | 158 ENDIF ; _external_sensor |
582 | 159 |
634 | 160 |
161 ;----------------------------------------------------------------------------- | |
162 ; Call Function - start Bailout Condition | |
163 ; | |
164 do_divemode_gaslist_bail: | |
165 bcf is_diluent_menu ; select OC gases | |
166 bsf is_bailout_menu ; flag it is a bailout action | |
167 bra do_divemode_gaslist ; continue with the gas menu for B/O gas selection | |
168 | |
169 | |
170 ;----------------------------------------------------------------------------- | |
171 ; Call Function - switch to calculated Setpoint (pSCR) | |
172 ; | |
173 do_switch_sp_calc: | |
174 bcf warn_det_sensors_lost ; clear fallback condition (revoke all sensors lost warning) | |
640 | 175 clrf dive_ccr_mode ; switch to fixed SP |
176 clrf WREG ; set setpoint to 0, this forces deco engine to take the computed ppO2 | |
177 movff WREG,char_I_const_ppO2 ; ... | |
634 | 178 bra do_switch_sp_com ; continue with common part |
179 | |
623 | 180 ENDIF ; _ccr_pscr |
181 | |
634 | 182 |
183 ;----------------------------------------------------------------------------- | |
184 ; dynamic Title - toggle GF | |
185 ; | |
186 dyn_toggle_gf: | |
187 movff char_I_model,WREG ; 0 = ZH-L16, 1 = ZH-L16-GF | |
188 decfsz WREG,W ; toggle GF only in GF modes - in GF mode? | |
189 bra dyn_toggle_gf_1 ; NO - print in disabled color | |
190 TSTOSS opt_enable_aGF ; YES - aGF enabled? | |
191 dyn_toggle_gf_1: | |
192 FONT_COLOR_DISABLED ; NO - print in disabled color | |
193 STRCAT_TEXT tDivemenu_ToggleGF ; output label | |
194 return ; done | |
0 | 195 |
631 | 196 |
634 | 197 ;----------------------------------------------------------------------------- |
198 ; Sub-Menu: Toggle GFs | |
199 ; | |
631 | 200 do_return_toggle_gf: |
201 call menu_processor_pop ; drop selection from menu stack | |
202 bra do_toggle_gf_1 ; re-draw the custom view and enter the menu again | |
203 | |
560 | 204 do_toggle_gf: |
631 | 205 TSTOSS char_I_model ; toggle GF only in GF modes - in GF mode? (0 = ZH-L16, 1 = ZH-L16-GF) |
634 | 206 bra do_abort_toggle_gf ; NO - do nothing and return |
207 TSTOSS opt_enable_aGF ; aGF enabled? | |
208 bra do_abort_toggle_gf ; NO - do nothing and return | |
631 | 209 bsf custom_view_locked ; lock custom view |
210 do_toggle_gf_1: | |
211 movlw index_gf_factors ; get number of GF factors custom view | |
212 movwf active_customview ; set custom view number | |
213 call dive_customview_callup ; draw custom view | |
214 movlw .1 ; set to first option in dive mode menu | |
215 movwf menu_pos_cur ; ... | |
582 | 216 |
643 | 217 MENU_BEGIN_DIVE tDivemenu_ToggleGF, .2 |
631 | 218 MENU_CALL tDivemenu_ToggleGF, do_toggle_gf_toggle |
219 MENU_CALL tExit, do_exit_divemode_menu | |
582 | 220 MENU_END |
0 | 221 |
634 | 222 |
223 ;----------------------------------------------------------------------------- | |
224 ; Helper Function - abort toggle GF Sub-Menu | |
225 ; | |
226 do_abort_toggle_gf: | |
227 call menu_processor_pop ; drop selection from menu stack | |
228 bra do_main_divemenu_common ; back to main menu | |
229 | |
230 | |
231 ;----------------------------------------------------------------------------- | |
232 ; Call Function - toggle GF <-> aGF | |
233 ; | |
631 | 234 do_toggle_gf_toggle: |
634 | 235 bsf request_toggle_GF ; request restart of the deco engine |
631 | 236 btg use_aGF ; toggle normal / alternative GF factor selection |
237 btfsc use_aGF ; alternative GF factors activated? | |
238 bra do_togglegf_agf ; YES - branch to using alternative GF | |
239 ;bra do_togglegf_ngf ; NO - branch to using normal GF | |
240 do_togglegf_ngf: | |
241 movff opt_GF_low, char_I_GF_Low_percentage ; use normal GF factor low | |
242 movff opt_GF_high,char_I_GF_High_percentage ; use normal GF factor high | |
243 bra do_return_toggle_gf ; back to menu | |
244 do_togglegf_agf: | |
245 movff opt_aGF_low, char_I_GF_Low_percentage ; use alternative GF factor low | |
246 movff opt_aGF_high,char_I_GF_High_percentage ; use alternative GF factor high | |
247 bra do_return_toggle_gf ; back to menu | |
582 | 248 |
249 | |
634 | 250 ;----------------------------------------------------------------------------- |
251 ; Sub-Menu: Reset average Depth & set Marker | |
252 ; | |
604 | 253 do_reset_avg_set_mkr: |
631 | 254 movlw .1 ; set to first option in dive mode menu |
255 movwf menu_pos_cur ; ... | |
604 | 256 |
643 | 257 MENU_BEGIN_DIVE tDivemenu_Marker, .3 |
604 | 258 MENU_CALL tDivemenu_ResetAvg, do_reset_average |
259 MENU_CALL tDivemenu_Marker, do_set_marker | |
634 | 260 MENU_CALL tBack, do_return_main_divemenu ; return to main menu |
604 | 261 MENU_END |
262 | |
263 | |
634 | 264 ;----------------------------------------------------------------------------- |
265 ; Call Function - reset average Depth | |
266 ; | |
604 | 267 do_reset_average: |
623 | 268 bsf request_reset_avg ; request reset of resettable average depth and dive time |
269 IFDEF _min_depth_option | |
270 bsf reset_trip_pressure ; request ISR to reset the min and max trip-wise pressures | |
271 ENDIF | |
631 | 272 bra do_exit_divemode_menu ; continue exiting the menu |
623 | 273 |
604 | 274 |
634 | 275 ;----------------------------------------------------------------------------- |
276 ; Call Function - set a Marker in the Dive Profile Recording | |
277 ; | |
560 | 278 do_set_marker: |
623 | 279 bsf request_set_marker ; set request flag |
631 | 280 bra do_exit_divemode_menu ; continue exiting the menu |
623 | 281 |
282 | |
634 | 283 ;----------------------------------------------------------------------------- |
284 ; Sub-Menu: Switch OC / Diluent Selection | |
285 ; | |
286 do_divemode_gaslist: | |
623 | 287 IFDEF _ccr_pscr |
288 btfsc bailout_mode ; in bailout mode? | |
289 bcf is_diluent_menu ; YES - for safety reasons, redirect to selecting OC (bailout) gases | |
634 | 290 ENDIF ; _ccr_pscr |
623 | 291 bsf short_gas_descriptions ; do not show "Gas x" etc. |
604 | 292 bsf better_gas_hint ; mark the gas which is the best gas/diluent |
631 | 293 bsf color_code_gases ; color-code the gases/diluents by their ppO2 and current depth |
604 | 294 movf best_gas_number,W ; load number of best gas (1-5)into WREG |
623 | 295 IFDEF _ccr_pscr |
296 btfsc is_diluent_menu ; in diluent selection? | |
604 | 297 movf best_dil_number,W ; YES - overwrite with best diluent (1-5) |
634 | 298 ENDIF; _ccr_pscr |
604 | 299 bnz do_divemode_gaslist_1 ; best gas/dil number = 0 (none available) ? |
300 movlw .1 ; YES - default to first gas/dil | |
301 btfsc WREG,7 ; best gas/dil number >= 128 (not computed yet) ? | |
302 movlw .1 ; YES - default to first gas/dil | |
303 do_divemode_gaslist_1: | |
623 | 304 movwf menu_pos_cur ; position cursor to best gas/dil (or first option if none avail) |
631 | 305 |
643 | 306 MENU_BEGIN_DIVE tDivemenu_Gaslist, .6 |
634 | 307 MENU_DYNAMIC dyn_strcat_gas_prodl, do_switch_gas |
308 MENU_DYNAMIC dyn_strcat_gas_prodl, do_switch_gas | |
309 MENU_DYNAMIC dyn_strcat_gas_prodl, do_switch_gas | |
310 MENU_DYNAMIC dyn_strcat_gas_prodl, do_switch_gas | |
311 MENU_DYNAMIC dyn_strcat_gas_prodl, do_switch_gas | |
631 | 312 MENU_CALL tDivemenu_LostGas, do_lost_gas |
582 | 313 MENU_END |
314 | |
0 | 315 |
634 | 316 ;----------------------------------------------------------------------------- |
317 ; dynamic Title - print full Gas Description | |
318 ; | |
319 dyn_strcat_gas_prodl: | |
320 goto gaslist_strcat_gas_PRODL ; code is hosted in gaslist.asm | |
582 | 321 |
403
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
401
diff
changeset
|
322 |
634 | 323 ;----------------------------------------------------------------------------- |
324 ; Call Function - initiate Gas Change (will also trigger restart of deco_engine) | |
325 ; | |
560 | 326 do_switch_gas: |
634 | 327 bsf request_gas_change ; request dive mode to do a gas change |
631 | 328 IFDEF _ccr_pscr |
604 | 329 btfss is_bailout_menu ; doing a bailout? |
330 bra do_switch_gas_1 ; NO | |
623 | 331 bsf bailout_mode ; YES - begin bailout mode |
634 | 332 ENDIF ; _ccr_pscr |
604 | 333 IFDEF _cave_mode |
631 | 334 btfsc cave_mode ; - cave mode switched on? |
335 bsf request_turn_turn ; YES - request to turn the dive | |
634 | 336 ENDIF ; _cave_mode |
631 | 337 IFDEF _ccr_pscr |
338 do_switch_gas_1: | |
634 | 339 bcf warn_det_sensors_lost ; terminate fallback mode and get rid of its warning if applicable |
631 | 340 call dive_customview_callup ; redraw custom view mask to rewrite "ppO2(Dil)" to "ppO2" or SAC label if applicable |
634 | 341 ENDIF ; _ccr_pscr |
631 | 342 ; revoke staged and lost state on the selected gas |
343 lfsr FSR1,opt_gas_type ; load base address of gas types | |
344 movff menu_pos_cur,lo ; copy selected gas to lo | |
345 IFDEF _ccr_pscr | |
346 movlw .5 ; load WREG with diluent offset | |
347 btfsc is_diluent_menu ; operating on diluents? | |
348 addwf lo,F ; YES - add diluent offset to shift 1-5 -> 6-10 | |
349 ENDIF ; _ccr_pscr | |
350 decf lo,W ; 1-10 -> 0-4 for gases / 5-9 for diluents with result into WREG | |
351 bcf PLUSW1,gas_lost ; revoke lost state | |
352 IFDEF _cave_mode | |
353 bcf PLUSW1,gas_staged ; revoke staged state | |
634 | 354 ENDIF ; _cave_mode |
355 bra do_exit_divemode_menu ; continue exiting the menu | |
582 | 356 |
623 | 357 |
634 | 358 ;----------------------------------------------------------------------------- |
359 ; Sub-Menu: lost / staged Gas | |
360 ; | |
361 do_lost_gas: | |
362 movlw .1 ; set to first option in dive mode menu | |
363 movwf menu_pos_cur ; ... | |
364 bcf gas6_or_EXIT ; default to presenting gas6 option | |
650 | 365 btfsc alt_layout_active ; alternative layout (big font) active? |
366 bsf gas6_or_EXIT ; YES - do not present gas6 option | |
634 | 367 do_lost_gas_common: |
368 bsf short_gas_descriptions ; do not show "Gas x" etc. | |
369 bcf better_gas_hint ; do not mark the best gas/diluent | |
370 bcf color_code_gases ; do not color-code the gases/diluents by their ppO2 | |
371 | |
643 | 372 MENU_BEGIN_DIVE tDivemenu_LostGas, .6 |
634 | 373 MENU_DYNAMIC dyn_strcat_gas_prodl, do_toggle_staged_lost |
374 MENU_DYNAMIC dyn_strcat_gas_prodl, do_toggle_staged_lost | |
375 MENU_DYNAMIC dyn_strcat_gas_prodl, do_toggle_staged_lost | |
376 MENU_DYNAMIC dyn_strcat_gas_prodl, do_toggle_staged_lost | |
377 MENU_DYNAMIC dyn_strcat_gas_prodl, do_toggle_staged_lost | |
378 MENU_DYNAMIC dyn_gas6_or_exit, do_gas6_or_exit | |
379 MENU_END | |
560 | 380 |
381 | |
634 | 382 ;----------------------------------------------------------------------------- |
383 ; dynamic Title - print full Gas Description | |
384 ; | |
385 ;dyn_strcat_gas_prodl: | |
386 ; goto gaslist_strcat_gas_PRODL ; code is hosted in gaslist.asm | |
387 | |
388 | |
389 ;----------------------------------------------------------------------------- | |
390 ; Call Function - toggle a Gas between available, lost and staged | |
391 ; | |
631 | 392 do_toggle_staged_lost: |
393 movff menu_pos_cur,lo ; copy selected gas/diluent to lo (1-5) | |
394 movf active_gas,W ; copy currently used gas to WREG (1-5) | |
623 | 395 IFDEF _ccr_pscr |
631 | 396 btfsc FLAG_oc_mode ; in OC mode? |
397 bra do_toggle_staged_lost_check ; YES - can't be in diluent menu then, check selected gas against gas in use | |
398 btfsc bailout_mode ; NO - in bailout? | |
399 bra do_toggle_staged_lost_check ; YES - can't be in diluent menu then, check selected gas against bailout gas in use | |
400 btfss is_diluent_menu ; NO - breathing a diluent then, in diluent menu? | |
401 bra do_toggle_staged_lost_exec ; NO - can modify any gas, no need for a check | |
402 movf active_dil,W ; YES - check selected diluent against diluent in use | |
634 | 403 ENDIF ; _ccr_pscr |
631 | 404 do_toggle_staged_lost_check: |
405 cpfseq lo ; selected gas/dil = currently used gas/dil? | |
406 bra do_toggle_staged_lost_exec ; NO - can set selected gas/dil to lost or staged | |
407 bra do_lost_gas_common ; YES - gas/dil in use, can not set to lost or staged, back to menu | |
408 do_toggle_staged_lost_exec: | |
604 | 409 lfsr FSR1,opt_gas_type ; load base address of gas types |
631 | 410 bcf better_gas_blinking ; clear blinking flag for gases to avoid "leftovers" |
623 | 411 IFDEF _ccr_pscr |
631 | 412 bcf better_dil_blinking ; clear blinking flag for diluents to avoid "leftovers" |
413 movlw .5 ; load WREG with diluent offset | |
623 | 414 btfsc is_diluent_menu ; operating on diluents? |
631 | 415 addwf lo,F ; YES - add diluent offset to shift 1-5 -> 6-10 |
416 ENDIF ; _ccr_pscr | |
417 IFDEF _cave_mode | |
418 TSTOSS opt_cave_mode ; cave mode switched on? | |
419 bra do_toggle_staged_lost_3 ; NO - just toggle lost state | |
420 decf lo,W ; YES - 1-10 -> 0-4 for gases / 5-9 for diluents with result into WREG | |
421 btfsc PLUSW1,gas_staged ; - gas currently set as staged? | |
422 bra do_toggle_staged_lost_1 ; YES - set as lost now | |
423 btfsc PLUSW1,gas_lost ; NO - gas currently set as lost? | |
424 bra do_toggle_staged_lost_2 ; YES - set as available now | |
425 ;bra do_toggle_staged_lost_0 ; NO - set as staged now | |
426 do_toggle_staged_lost_0: | |
427 bsf PLUSW1,gas_staged ; set staged state | |
428 bra do_toggle_staged_lost_4 ; continue with restarting deco engine | |
429 do_toggle_staged_lost_1: | |
430 bcf PLUSW1,gas_staged ; revoke staged state | |
431 bsf PLUSW1,gas_lost ; set lost state | |
432 bra do_toggle_staged_lost_4 ; continue with restarting deco engine | |
433 do_toggle_staged_lost_2: | |
434 bcf PLUSW1,gas_lost ; revoke lost state | |
435 bra do_toggle_staged_lost_4 ; continue with restarting deco engine | |
436 ENDIF ; _cave_mode | |
437 do_toggle_staged_lost_3: | |
438 decf lo,W ; 1-10 -> 0-4 for gases / 5-9 for diluents with result into WREG | |
439 btg PLUSW1,gas_lost ; toggle lost state | |
440 do_toggle_staged_lost_4: | |
441 bsf request_gas_update ; request to update the gases | |
442 bsf gas6_or_EXIT ; switch 6th menu item from gas6 to exit | |
443 bra do_lost_gas_common ; back to the menu | |
0 | 444 |
623 | 445 |
634 | 446 ;----------------------------------------------------------------------------- |
447 ; dynamic Title - print Gas 6 Item or Exit Item | |
448 ; | |
449 dyn_gas6_or_exit: | |
450 btfsc gas6_or_EXIT ; shall print exit? | |
451 bra dyn_gas6_or_exit_1 ; YES - print exit label | |
452 STRCAT_TEXT tGas6 ; NO - print gas 6 label | |
453 return ; - done | |
454 dyn_gas6_or_exit_1: | |
455 STRCAT_TEXT tExit ; print exit label | |
456 return ; done | |
457 | |
458 | |
459 ;----------------------------------------------------------------------------- | |
460 ; Sub-Menu: Gas 6 / Menu-Exit | |
461 ; | |
462 do_gas6_or_exit: | |
463 btfsc gas6_or_EXIT ; shall exit? | |
464 bra do_exit_divemode_menu ; YES - exit the menu | |
465 movlw .1 ; NO - select first item | |
466 movwf menu_pos_cur ; - set cursor | |
467 movff char_I_O2_ratio,opt_gas6_O2_ratio ; - initialize gas6 with currently breathed gas - O2 ratio | |
623 | 468 IFDEF _helium |
634 | 469 movff char_I_He_ratio,opt_gas6_He_ratio ; - initialize gas6 with currently breathed gas - He ratio |
623 | 470 ELSE |
634 | 471 clrf WREG ; - set gas6 helium to zero |
472 movff WREG,opt_gas6_He_ratio ; - ... | |
473 ENDIF ; _helium | |
474 bsf block_option_value ; suspend displaying of option values | |
582 | 475 |
623 | 476 |
634 | 477 IFDEF _helium |
643 | 478 MENU_BEGIN_DIVE tGas6, .6 |
634 | 479 MENU_OPT_INCS tO2Plus, oGas6O2 |
480 MENU_OPT_DECS tO2Minus, oGas6O2 | |
481 MENU_OPT_INCS tHePlus, oGas6He | |
482 MENU_OPT_DECS tHeMinus, oGas6He | |
483 MENU_DYNAMIC dyn_show_gas6, do_gas6_switch | |
484 MENU_CALL tExit, do_exit_divemode_menu | |
485 MENU_END | |
486 ELSE | |
643 | 487 MENU_BEGIN_DIVE tGas6, .4 |
634 | 488 MENU_OPT_INCS tO2Plus, oGas6O2 |
489 MENU_OPT_DECS tO2Minus, oGas6O2 | |
490 MENU_DYNAMIC dyn_show_gas6, do_gas6_switch | |
491 MENU_CALL tExit, do_exit_divemode_menu | |
492 MENU_END | |
493 ENDIF; _helium | |
0 | 494 |
623 | 495 |
634 | 496 ;----------------------------------------------------------------------------- |
497 ; dynamic Title: show Gas 6 Mix | |
498 ; | |
499 dyn_show_gas6: | |
500 STRCAT_TEXT tTakeGas ; print "take" | |
501 PUTC " " ; print one space | |
502 movff opt_gas6_O2_ratio,hi ; TFT_color_code_gaslist needs O2 ratio in hi | |
503 call TFT_color_code_gaslist ; color-code according to O2 ratio and depth | |
504 movff opt_gas6_O2_ratio,lo ; gaslist_strcat_mix needs O2 ratio in lo | |
505 IFDEF _helium | |
506 movff opt_gas6_He_ratio,hi ; ... and He ratio in hi | |
507 ELSE | |
508 clrf hi ; ... and He ration will be zero | |
509 ENDIF ; _helium | |
510 goto gaslist_strcat_mix ; print "Nxlo", "Txlo/hi", "Air" or "O2" and return | |
0 | 511 |
582 | 512 |
634 | 513 ;----------------------------------------------------------------------------- |
514 ; Call Function - switch to Gas 6 | |
515 ; | |
516 do_gas6_switch: | |
517 movlw .6 ; gas 6 | |
518 movwf menu_pos_cur ; transfer register for selected gas towards gas_switched_common | |
519 bsf event_gas_change_gas6 ; set flag for profile recording | |
520 bra do_switch_gas ; continue with common gas-switched code | |
623 | 521 |
522 | |
523 IFDEF _ccr_pscr | |
0 | 524 |
634 | 525 ;----------------------------------------------------------------------------- |
526 ; Sub Menu - select Setpoint | |
527 ; | |
0 | 528 do_divemode_splist: |
623 | 529 bsf short_gas_descriptions ; do not show "SP" etc. |
530 movlw .1 ; default to first menu item | |
640 | 531 movff dive_ccr_mode,lo ; get CCR mode (0: Fixed SP, 1: Sensor, 2: Auto SP) |
623 | 532 dcfsnz lo,F ; mode = sensor ? |
533 movlw .6 ; YES - load menu item number for 'sensor' | |
634 | 534 btfsc warn_det_sensors_lost ; all sensors lost? |
623 | 535 movlw .1 ; YES - revert to first menu item |
536 movwf menu_pos_cur ; set cursor position | |
560 | 537 |
623 | 538 IFDEF _external_sensor |
634 | 539 btfsc ext_input_s8_ana ; do we have an S8/analog input (OSTC cR)? |
582 | 540 bra do_divemode_splist_sensor ; YES |
634 | 541 btfsc ext_input_optical ; do we have an optical input (OSTC 3)? |
582 | 542 bra do_divemode_splist_sensor ; YES |
634 | 543 ENDIF ; _external_sensor |
0 | 544 |
560 | 545 do_divemode_splist_no_sensor: |
643 | 546 MENU_BEGIN_DIVE tFixedSetpoints, .6 |
634 | 547 MENU_DYNAMIC dyn_strcat_setpoint_prodl, do_switch_sp |
548 MENU_DYNAMIC dyn_strcat_setpoint_prodl, do_switch_sp | |
549 MENU_DYNAMIC dyn_strcat_setpoint_prodl, do_switch_sp | |
550 MENU_DYNAMIC dyn_strcat_setpoint_prodl, do_switch_sp | |
551 MENU_DYNAMIC dyn_strcat_setpoint_prodl, do_switch_sp | |
640 | 552 MENU_CALL tCCRModeAutoSP, do_switch_auto |
582 | 553 MENU_END |
554 | |
623 | 555 |
556 IFDEF _external_sensor | |
557 | |
582 | 558 do_divemode_splist_sensor: |
643 | 559 MENU_BEGIN_DIVE tFixedSetpoints, .6 |
634 | 560 MENU_DYNAMIC dyn_strcat_setpoint_prodl, do_switch_sp |
561 MENU_DYNAMIC dyn_strcat_setpoint_prodl, do_switch_sp | |
562 MENU_DYNAMIC dyn_strcat_setpoint_prodl, do_switch_sp | |
563 MENU_DYNAMIC dyn_strcat_setpoint_prodl, do_switch_sp | |
564 MENU_DYNAMIC dyn_strcat_setpoint_prodl, do_switch_sp | |
640 | 565 MENU_CALL tCCRModeSensor, do_divemode_sensor |
582 | 566 MENU_END |
249 | 567 |
634 | 568 ENDIF ; _external_sensor |
249 | 569 |
634 | 570 |
571 ;----------------------------------------------------------------------------- | |
572 ; dynamic Title - print Setpoint | |
573 ; | |
574 dyn_strcat_setpoint_prodl: | |
575 goto gaslist_strcat_setpoint_PRODL ; function is hosted in gaslist.asm | |
576 | |
577 | |
578 ;----------------------------------------------------------------------------- | |
579 ; Call Function - switch to manually selected Setpoint (CCR) | |
580 ; | |
581 do_switch_sp: | |
582 decf menu_pos_cur,W ; 1-5 -> 0-4 | |
583 lfsr FSR1,opt_setpoint_cbar ; load base address | |
584 movff PLUSW1,char_I_const_ppO2 ; set selected setpoint | |
585 IFDEF _external_sensor | |
586 call transmit_setpoint ; transmit current setpoint from WREG (in cbar) to external electronics | |
587 ENDIF | |
588 bcf warn_det_sensors_lost ; clear fallback condition (revoke all sensors lost warning) | |
640 | 589 clrf dive_ccr_mode ; switch to fixed SP |
590 bra do_switch_sp_com ; continue with common part | |
591 | |
592 | |
593 ;----------------------------------------------------------------------------- | |
594 ; Call Function - switch to Auto-SP (CCR) | |
595 ; | |
596 do_switch_auto: | |
597 movff opt_setpoint_cbar+0,char_I_const_ppO2 ; selected 1st setpoint | |
598 bcf warn_det_sensors_lost ; clear fallback condition | |
599 movlw .2 ; switch to auto SP | |
600 movwf dive_ccr_mode ; =0: fixed SP (CCR) / calculated (pSCR), =1: Sensor, =2: auto SP | |
601 bsf restart_auto_sp ; restart auto SP selection | |
634 | 602 ;bra do_switch_sp_com ; continue with common part |
603 | |
604 | |
605 ;----------------------------------------------------------------------------- | |
606 ; Helper Function - common Part of Setpoint Switching | |
607 ; | |
608 do_switch_sp_com: ; common part | |
609 bsf event_occured ; set global event byte | |
610 bsf event_SP_change ; set setpoint event flag | |
611 | |
640 | 612 ; clear some flags in case we were in bailout before... |
634 | 613 bcf bailout_mode ; end bailout mode |
614 bcf better_gas_available ; =1: a better gas is available and a gas change is advised in dive mode | |
615 bcf better_dil_available ; =1: a better diluent is available and a gas change is advised in dive mode | |
616 bcf better_gas_blinking ; clear blinking flag | |
617 bcf better_dil_blinking ; clear blinking flag | |
618 call dive_customview_callup ; redraw custom view mask to (if applicable) rewrite "ppO2(Dil)" to "ppO2" or SAC label | |
619 | |
620 bsf request_back_to_loop ; indicate that it is a switchback from OC bailout to CCR/pSCR loop | |
621 bsf request_gas_change ; initiate reconfiguration to loop mode on last diluent | |
622 | |
623 bra do_exit_divemode_menu ; continue exiting the menu | |
624 | |
625 | |
626 IFDEF _external_sensor | |
627 | |
628 | |
629 ;----------------------------------------------------------------------------- | |
630 ; Return to Sub Menu toggle Sensor Usage / select Sensors from Menu Action | |
631 ; | |
632 do_return_divemode_sensor: | |
633 call menu_processor_pop ; drop selection from menu stack | |
634 bra do_return_divemode_common ; back to menu | |
635 | |
636 ;----------------------------------------------------------------------------- | |
637 ; Sub Menu - toggle Sensor Usage / select Sensors | |
638 ; | |
0 | 639 do_divemode_sensor: |
631 | 640 movlw index_ppo2_sensors ; number of ppO2 sensors custom view |
641 movwf active_customview ; set the custom view number | |
642 call dive_customview_callup ; call-up the custom view | |
643 movlw .1 ; set to 1st option: use sensors | |
644 movwf menu_pos_cur ; ... | |
582 | 645 |
634 | 646 do_return_divemode_common: |
643 | 647 MENU_BEGIN_DIVE tDivemenu_UseSensor,.6 |
582 | 648 MENU_CALL tDivemenu_UseSensor, do_switch_sensor |
560 | 649 MENU_CALL tBack, do_divemode_splist |
582 | 650 MENU_CALL tExit, do_exit_divemode_menu |
560 | 651 MENU_CALL tDiveHudMask1, do_toggle_sensor |
652 MENU_CALL tDiveHudMask2, do_toggle_sensor | |
653 MENU_CALL tDiveHudMask3, do_toggle_sensor | |
582 | 654 MENU_END |
0 | 655 |
560 | 656 do_divemode_setpoint_pscr: |
582 | 657 movlw .1 |
623 | 658 movwf menu_pos_cur ; set to 1st option: use calculated ppO2 |
631 | 659 |
643 | 660 MENU_BEGIN_DIVE tDivemenu_UseSensor,.6 |
560 | 661 MENU_CALL tCalculated, do_switch_sp_calc |
582 | 662 MENU_CALL tDivemenu_UseSensor, do_switch_sensor |
663 MENU_CALL tExit, do_exit_divemode_menu | |
560 | 664 MENU_CALL tDiveHudMask1, do_toggle_sensor |
665 MENU_CALL tDiveHudMask2, do_toggle_sensor | |
666 MENU_CALL tDiveHudMask3, do_toggle_sensor | |
582 | 667 MENU_END |
668 | |
634 | 669 |
670 ;----------------------------------------------------------------------------- | |
671 ; Call Function - switch to using Sensors | |
672 ; | |
673 do_switch_sensor: | |
674 movlw .1 ; switch to sensor (0: fixed/ calculated SP, 1: Sensor, 2: AutoSP) | |
640 | 675 movwf dive_ccr_mode ; ... |
0 | 676 |
634 | 677 ; check for external HUD/ppO2 Monitor |
678 btfss ext_input_optical ; do we have an optical input? | |
679 bra do_switch_sp_com ; NO - continue with common part | |
680 btfsc sensor1_active ; YES - process flags from HUD/ppO2 Monitor | |
681 bsf use_O2_sensor1 ; - ... | |
682 btfsc sensor2_active ; - ... | |
683 bsf use_O2_sensor2 ; - ... | |
684 btfsc sensor3_active ; - ... | |
685 bsf use_O2_sensor3 ; - ... | |
686 bra do_switch_sp_com ; - continue with common part | |
687 | |
688 | |
689 ;----------------------------------------------------------------------------- | |
690 ; Call Function - toggle Sensor Usage | |
691 ; | |
560 | 692 do_toggle_sensor: |
634 | 693 movf menu_pos_cur,W ; copy position to WREG |
694 addlw -.3 ; skip first 3 menu items | |
695 dcfsnz WREG ; cursor on item sensor 1 ? | |
696 btg use_O2_sensor1 ; YES - toggle sensor 1 state | |
697 dcfsnz WREG ; cursor on item sensor 2 ? | |
698 btg use_O2_sensor2 ; YES - toggle sensor 2 state | |
699 dcfsnz WREG ; cursor on item sensor 3 ? | |
700 btg use_O2_sensor3 ; YES - toggle sensor 3 state | |
701 bra do_return_divemode_sensor ; back to same menu | |
560 | 702 |
623 | 703 ENDIF ; _external_sensor |
704 ENDIF ; _ccr_pscr | |
705 | |
631 | 706 |
707 IFDEF _cave_mode | |
708 | |
634 | 709 ;----------------------------------------------------------------------------- |
710 ; Return to Cave Mode Main Menu | |
711 ; | |
631 | 712 do_return_main_cavemenu: |
713 call menu_processor_pop ; drop selection from menu stack | |
714 incf selected_item,W ; item numbers start with 0, menu positions with 1 | |
715 movwf menu_pos_cur ; position cursor where we came from | |
716 bra do_main_cavemenu_common ; continue with common part | |
717 | |
634 | 718 |
719 ;----------------------------------------------------------------------------- | |
720 ; Cave Mode Main Menu | |
721 ; | |
631 | 722 global do_main_cavemenu |
723 do_main_cavemenu: | |
724 bsf custom_view_locked ; lock custom view | |
725 movff active_customview,backup_customview ; back up current custom view | |
726 call menu_processor_reset ; restart from first icon | |
727 movlw .1 ; set cursor to first menu item by default | |
728 btfsc dive_turned ; dive turned ? | |
729 movlw .4 ; YES - set cursor on waypoint out item | |
730 btfss cave_mode ; cave mode switched off ? | |
731 movlw .3 ; YES - set cursor on cave mode off/on menu item | |
732 movwf menu_pos_cur ; actually set cursor position | |
634 | 733 ;bra do_main_cavemenu_common ; continue with common part |
631 | 734 |
735 do_main_cavemenu_common: | |
736 movlw index_cave_waypoints ; get number of cave waypoints custom view | |
737 movwf active_customview ; set custom view number | |
738 call dive_customview_callup ; draw custom view | |
739 | |
643 | 740 MENU_BEGIN_DIVE tCaveMode, .6 |
634 | 741 MENU_DYNAMIC dyn_waypoint_set, do_waypoint_set ; 1 |
742 MENU_DYNAMIC dyn_turndive_toggle, do_turndive_toggle ; 2 | |
631 | 743 MENU_CALL tDivemenu_off_on, do_cavemode_toggle ; 3 |
634 | 744 MENU_DYNAMIC dyn_waypoint_out, do_waypoint_out ; 4 |
745 MENU_DYNAMIC dyn_waypoint_in, do_waypoint_in ; 5 | |
631 | 746 MENU_CALL tExit, do_exit_divemode_menu ; 6 |
747 MENU_END | |
748 | |
749 | |
634 | 750 ;------------------------------------------------------------------- |
751 ; dynamic Title - set a Waypoint | |
752 ; | |
753 dyn_waypoint_set: | |
754 call cavemode_waypoint_set_check ; check if command is allowed to execute | |
755 tstfsz WREG ; command allowed? | |
756 FONT_COLOR_DISABLED ; NO - switch to disabled color | |
757 STRCAT_TEXT tDivemenu_wp_set ; print label | |
758 return ; done | |
759 | |
760 | |
761 ;------------------------------------------------------------------- | |
762 ; dynamic Title - turn the Dive | |
763 ; | |
764 dyn_turndive_toggle: | |
765 call cavemode_turndive_check ; check if command is allowed | |
766 tstfsz WREG ; command allowed? | |
767 FONT_COLOR_DISABLED ; NO - switch to disabled color | |
768 btfss cave_mode ; cave mode switched on? | |
769 bra dyn_turndive_toggle_1 ; NO - print turn dive label | |
770 btfss dive_turned ; YES - dive turned? | |
771 bra dyn_turndive_toggle_1 ; NO - print turn dive label | |
772 STRCAT_TEXT tDivemenu_ContDive ; YES - print continue dive label | |
773 return ; - done | |
774 dyn_turndive_toggle_1: | |
775 STRCAT_TEXT tDivemenu_TurnDive ; print turn dive label | |
776 return ; done | |
777 | |
778 | |
779 ;------------------------------------------------------------------- | |
780 ; dynamic Title - navigate one Waypoint outwards | |
781 ; | |
782 dyn_waypoint_out: | |
783 call cavemode_waypoint_out_check ; check if command is allowed to execute | |
784 tstfsz WREG ; command allowed? | |
785 FONT_COLOR_DISABLED ; NO - switch to disabled color | |
786 STRCAT_TEXT tDivemenu_wp_out ; print label | |
787 return ; done | |
788 | |
789 | |
790 ;------------------------------------------------------------------- | |
791 ; dynamic Title - navigate one Waypoint inwards | |
792 ; | |
793 dyn_waypoint_in: | |
794 call cavemode_waypoint_in_check ; check if command is allowed to execute | |
795 tstfsz WREG ; command allowed? | |
796 FONT_COLOR_DISABLED ; NO - switch to disabled color | |
797 STRCAT_TEXT tDivemenu_wp_in ; print label | |
798 return ; done | |
799 | |
800 | |
801 ;------------------------------------------------------------------- | |
802 ; Call Function - set a Waypoint | |
803 ; | |
631 | 804 do_waypoint_set: |
805 bsf request_waypoint_set ; set request flag | |
806 bra do_return_main_cavemenu ; back to menu | |
807 | |
634 | 808 |
809 ;------------------------------------------------------------------- | |
810 ; Call Function - turn the dive | |
811 ; | |
631 | 812 do_turndive_toggle: |
813 bsf request_turn_toggle ; set request flag | |
814 bra do_return_main_cavemenu ; back to menu | |
815 | |
634 | 816 |
817 ;------------------------------------------------------------------- | |
818 ; Call Function - turn Cave Mode on/off | |
819 ; | |
631 | 820 do_cavemode_toggle: |
821 bsf request_cave_toggle ; set request flag | |
822 bra do_return_main_cavemenu ; back to menu | |
823 | |
634 | 824 |
825 ;------------------------------------------------------------------- | |
826 ; Call Function - navigate one Waypoint outwards | |
827 ; | |
631 | 828 do_waypoint_out: |
829 bsf request_waypoint_out ; set request flag | |
830 bra do_return_main_cavemenu ; back to menu | |
831 | |
634 | 832 |
833 ;------------------------------------------------------------------- | |
834 ; Call Function - navigate one Waypoint inwards | |
835 ; | |
631 | 836 do_waypoint_in: |
837 bsf request_waypoint_in ; set request flag | |
838 bra do_return_main_cavemenu ; back to menu | |
839 | |
840 ENDIF ; _cave_mode | |
841 | |
634 | 842 |
843 ;----------------------------------------------------------------------------- | |
844 ; Call Function - leave the Menu | |
845 ; | |
846 do_exit_divemode_menu: | |
847 bcf block_option_value ; resume displaying of option values | |
848 goto diveloop_menu_exit ; back to the dive loop | |
849 | |
850 ;----------------------------------------------------------------------------- | |
623 | 851 |
852 END |