Mercurial > public > hwos_code
annotate src/divemenu_tree.asm @ 401:7be43d886bb1
Logbook marker can be set in dive mode menu (OC only)
author | heinrichsweikamp |
---|---|
date | Sat, 09 Jan 2016 11:42:01 +0100 |
parents | f0828110d864 |
children | 6e60012bb3fc |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File divemenu_tree.asm | |
4 ; | |
275 | 5 ; OSTC dive mode menu |
0 | 6 ; |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2013-02-02 : [mH] Made out of menu_tree.asm | |
11 | |
275 | 12 #include "hwos.inc" ; Mandatory header |
0 | 13 #include "menu_processor.inc" |
14 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c | |
15 #include "tft_outputs.inc" | |
16 #include "customview.inc" | |
17 #include "strings.inc" | |
195 | 18 #include "calibrate.inc" |
0 | 19 |
20 divegui CODE | |
21 ;============================================================================= | |
22 ; Main Menu | |
23 global do_main_divemenu | |
24 do_main_divemenu: | |
25 call menu_processor_reset ; restart from first icon. | |
26 | |
27 do_continue_main_divemenu: | |
28 call menu_processor_pop ; drop exit line. | |
29 call menu_processor_pop ; drop exit line. | |
30 | |
31 btfsc FLAG_ccr_mode | |
32 bra main_divemenu_ccr ; CCR Menu | |
33 | |
34 bcf ccr_diluent_setup ; For OC gases | |
35 bcf is_bailout_menu | |
36 movlw .1 | |
37 movwf menupos ; Set to first option in divemode menu | |
401
7be43d886bb1
Logbook marker can be set in dive mode menu (OC only)
heinrichsweikamp
parents:
377
diff
changeset
|
38 MENU_BEGIN tMainMenu, .5 |
0 | 39 MENU_CALL tDivemenu_Gaslist, do_divemode_gaslist |
40 MENU_CALL tDivemenu_ResetAvr, do_divemode_resetavr | |
41 MENU_CALL tDivemenu_ToggleGF, do_divemode_togglegf | |
401
7be43d886bb1
Logbook marker can be set in dive mode menu (OC only)
heinrichsweikamp
parents:
377
diff
changeset
|
42 MENU_CALL tDivemenu_Marker, do_set_marker |
0 | 43 MENU_CALL tExit, do_exit_divemode_menu |
44 MENU_END | |
45 | |
401
7be43d886bb1
Logbook marker can be set in dive mode menu (OC only)
heinrichsweikamp
parents:
377
diff
changeset
|
46 do_set_marker: |
7be43d886bb1
Logbook marker can be set in dive mode menu (OC only)
heinrichsweikamp
parents:
377
diff
changeset
|
47 movlw d'6' ; Type of Alarm (Manual Marker) |
7be43d886bb1
Logbook marker can be set in dive mode menu (OC only)
heinrichsweikamp
parents:
377
diff
changeset
|
48 movwf AlarmType ; Copy to Alarm Register |
7be43d886bb1
Logbook marker can be set in dive mode menu (OC only)
heinrichsweikamp
parents:
377
diff
changeset
|
49 bsf event_occured ; Set Event Flag |
7be43d886bb1
Logbook marker can be set in dive mode menu (OC only)
heinrichsweikamp
parents:
377
diff
changeset
|
50 bra do_exit_divemode_menu ; And exit |
7be43d886bb1
Logbook marker can be set in dive mode menu (OC only)
heinrichsweikamp
parents:
377
diff
changeset
|
51 |
0 | 52 main_divemenu_ccr: |
53 bsf ccr_diluent_setup ; For diluents | |
54 movlw .1 | |
55 movwf menupos ; Set to first option in divemode menu | |
56 MENU_BEGIN tMainMenu, .6 | |
57 MENU_CALL tDiveBailout, do_divemode_gaslist_bail | |
58 MENU_CALL tDivemenu_Setpoint, do_divemode_splist | |
59 MENU_CALL tDivemenu_Gaslist, do_divemode_gaslist | |
60 MENU_CALL tDivemenu_ResetAvr, do_divemode_resetavr | |
61 MENU_CALL tDivemenu_ToggleGF, do_divemode_togglegf | |
62 MENU_CALL tExit, do_exit_divemode_menu | |
63 MENU_END | |
64 | |
65 | |
66 do_togglegf: | |
67 TSTOSS opt_enable_aGF ; =1: aGF can be selected underwater | |
68 bra do_exit_divemode_menu ; exit | |
69 bsf toggle_gf ; Set flag... | |
70 bra do_exit_divemode_menu ; ...and exit | |
71 | |
72 do_switch_to_sensor: | |
73 movlw .1 ; Switch to Sensor | |
74 movff WREG,opt_ccr_mode ; =0: Fixed SP, =1: Sensor | |
192 | 75 bsf voting_logic_sensor1 |
76 bsf voting_logic_sensor2 | |
77 bsf voting_logic_sensor3 | |
193 | 78 extern divemode_setup_sensor_values |
79 call divemode_setup_sensor_values ; Setup sensor values | |
195 | 80 call check_sensors ; Check O2 sensor thresholds for fallback |
0 | 81 bra do_switch_sp2 |
82 | |
83 do_divemode_resetavr: | |
84 bsf reset_average_depth ; Set Flag | |
85 bra do_exit_divemode_menu ; And exit | |
86 | |
53
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
0
diff
changeset
|
87 |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
0
diff
changeset
|
88 do_switch_gas6: |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
0
diff
changeset
|
89 movlw .6 |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
0
diff
changeset
|
90 movwf active_gas ; Gas6 selected |
377 | 91 movff WREG,char_I_current_gas ; for p2_deco.c |
53
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
0
diff
changeset
|
92 bra do_switch_gasX |
0 | 93 extern diveloop_loop4 |
94 extern timeout_divemode_menu2 | |
95 do_switch_gas: | |
96 bsf divemode_gaschange ; Set flag | |
97 do_switch_gasX: | |
98 btfsc is_bailout_menu ; Bailout confirmed? | |
99 bsf is_bailout ; =1: Bailout | |
100 do_exit_divemode_menu: | |
101 call timeout_divemode_menu2 | |
102 clrf STKPTR | |
103 goto diveloop_loop4 | |
104 | |
105 do_switch_sp: | |
106 decf menupos,W ; 1-5 -> 0-4 | |
107 lfsr FSR1,char_I_setpoint_cbar | |
108 movff PLUSW1,char_I_const_ppO2; Setup fixed Setpoint | |
352
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
275
diff
changeset
|
109 movff char_I_const_ppO2,WREG |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
275
diff
changeset
|
110 call transmit_setpoint ; Transmit current setpoint from WREG (in cbar) to external electronics |
0 | 111 bsf setpoint_changed ; Set flag (For profile) |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
97
diff
changeset
|
112 bsf event_occured ; Set global event byte |
0 | 113 |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
53
diff
changeset
|
114 ; Reconfigure last diluent |
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
53
diff
changeset
|
115 extern setup_dil_registers |
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
53
diff
changeset
|
116 bcf is_bailout ; =1: Bailout |
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
53
diff
changeset
|
117 movff active_diluent,WREG ; As a backup when switching back from Bailout to CCR |
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
53
diff
changeset
|
118 decf WREG ; 0-4 |
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
53
diff
changeset
|
119 call setup_dil_registers ; With WREG=Gas 0-4 |
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
53
diff
changeset
|
120 |
0 | 121 clrf WREG ; Switch to fixed SP |
122 movff WREG,opt_ccr_mode ; =0: Fixed SP, =1: Sensor | |
123 clrf WREG | |
124 movff WREG,char_O_deco_status ; Restart decoplan computation | |
125 | |
126 do_switch_sp2: | |
127 ; Clear some flags in case we were in bailout before... | |
128 bcf is_bailout ; =1: Bailout | |
129 bcf is_bailout_menu ; | |
130 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
131 bcf blinking_better_gas ; Clear blinking flag | |
132 bra do_exit_divemode_menu ; And exit | |
133 | |
134 do_divemode_gaslist_bail: | |
135 bcf ccr_diluent_setup ; For OC gases | |
136 bsf is_bailout_menu ; =1: Bailout | |
137 do_divemode_gaslist: | |
138 btfsc is_bailout ; In Bailout case? | |
139 bcf ccr_diluent_setup ; Yes, use OC gases | |
140 bsf short_gas_decriptions | |
141 movlw .1 | |
142 movwf menupos ; Set to first option in divemode menu | |
143 MENU_BEGIN tGaslist, .6 | |
144 MENU_DYNAMIC gaslist_strcat_gas_mod, do_switch_gas | |
145 MENU_DYNAMIC gaslist_strcat_gas_mod, do_switch_gas | |
146 MENU_DYNAMIC gaslist_strcat_gas_mod, do_switch_gas | |
147 MENU_DYNAMIC gaslist_strcat_gas_mod, do_switch_gas | |
148 MENU_DYNAMIC gaslist_strcat_gas_mod, do_switch_gas | |
149 MENU_CALL tMore, do_divemode_gaslist_more0 | |
150 MENU_END | |
151 | |
152 do_divemode_gaslist_more0: | |
153 movlw .1 | |
154 movwf menupos ; Set to first option in divemode menu | |
155 do_divemode_gaslist_more: | |
156 MENU_BEGIN tGaslist, .6 | |
157 MENU_DYNAMIC gaslist_strcat_gasx, do_dive_nothing | |
158 MENU_CALL tO2Plus, do_dive_pO2 | |
159 MENU_CALL tO2Minus, do_dive_mO2 | |
160 MENU_CALL tHePlus, do_dive_pHe | |
161 MENU_CALL tHeMinus, do_dive_mHe | |
182 | 162 MENU_CALL tExit, do_switch_gas6 |
0 | 163 MENU_END |
164 | |
165 do_dive_nothing: | |
166 bra do_divemode_gaslist_more | |
167 | |
168 do_dive_pO2: | |
169 banksel char_I_O2_ratio | |
170 incf char_I_O2_ratio,F ; O2++ | |
171 movf char_I_He_ratio,W | |
172 addwf char_I_O2_ratio,W | |
173 movwf temp_bankx400 | |
174 movlw .101 | |
175 cpfslt temp_bankx400 ; O2+He<101? | |
176 decf char_I_O2_ratio,F ; O2-- (Unchanged) | |
177 ; bra do_divemode_gaslist_more_common | |
178 do_divemode_gaslist_more_common: | |
181
32c17df38423
BUGFIX: END/EAD updated when adjusting current gas during the dive
heinrichsweikamp
parents:
99
diff
changeset
|
179 movf char_I_O2_ratio,W ; Add O2... |
32c17df38423
BUGFIX: END/EAD updated when adjusting current gas during the dive
heinrichsweikamp
parents:
99
diff
changeset
|
180 addwf char_I_He_ratio,W ; ...and He... |
32c17df38423
BUGFIX: END/EAD updated when adjusting current gas during the dive
heinrichsweikamp
parents:
99
diff
changeset
|
181 sublw .100 ; ...subtract both from 100 |
32c17df38423
BUGFIX: END/EAD updated when adjusting current gas during the dive
heinrichsweikamp
parents:
99
diff
changeset
|
182 movwf char_I_N2_ratio ; -> N2! |
0 | 183 banksel common |
184 bsf gas6_changed ; Set flag | |
185 bra do_divemode_gaslist_more | |
186 | |
187 do_dive_mO2: | |
188 banksel char_I_O2_ratio | |
189 decf char_I_O2_ratio,F ; O2-- | |
190 movlw gaslist_min_o2 | |
191 cpfslt char_I_O2_ratio | |
192 bra do_divemode_gaslist_more_common | |
193 movlw gaslist_min_o2 | |
194 movwf char_I_O2_ratio | |
195 bra do_divemode_gaslist_more_common | |
196 | |
197 | |
198 do_dive_pHe: | |
199 banksel char_I_O2_ratio | |
200 incf char_I_He_ratio,F ; He++ | |
201 movf char_I_He_ratio,W | |
202 addwf char_I_O2_ratio,W | |
203 movwf lo | |
204 movlw .101 | |
205 cpfslt lo ; O2+He<101? | |
206 decf char_I_He_ratio,F ; Yes, He-- (Unchanged) | |
207 bra do_divemode_gaslist_more_common | |
208 | |
209 do_dive_mHe: | |
210 banksel char_I_O2_ratio | |
211 decf char_I_He_ratio,F ; He-- | |
212 bnn do_divemode_gaslist_more_common | |
213 clrf char_I_He_ratio | |
214 bra do_divemode_gaslist_more_common | |
215 | |
216 do_divemode_splist: | |
217 bsf short_gas_decriptions | |
218 movlw .1 | |
219 movwf menupos ; Set to first option in divemode menu | |
249 | 220 movf hardware_flag,W |
221 sublw 0x11 ; 2 with BLE | |
222 btfsc STATUS,Z | |
223 bra do_divemode_splist2 | |
0 | 224 MENU_BEGIN tGaslist, .6 |
225 MENU_DYNAMIC gaslist_strcat_setpoint, do_switch_sp | |
226 MENU_DYNAMIC gaslist_strcat_setpoint, do_switch_sp | |
227 MENU_DYNAMIC gaslist_strcat_setpoint, do_switch_sp | |
228 MENU_DYNAMIC gaslist_strcat_setpoint, do_switch_sp | |
229 MENU_DYNAMIC gaslist_strcat_setpoint, do_switch_sp | |
230 MENU_CALL tCCRSensor, do_divemode_sensor | |
231 MENU_END | |
232 | |
249 | 233 do_divemode_splist2: |
234 MENU_BEGIN tGaslist, .5 | |
235 MENU_DYNAMIC gaslist_strcat_setpoint, do_switch_sp | |
236 MENU_DYNAMIC gaslist_strcat_setpoint, do_switch_sp | |
237 MENU_DYNAMIC gaslist_strcat_setpoint, do_switch_sp | |
238 MENU_DYNAMIC gaslist_strcat_setpoint, do_switch_sp | |
239 MENU_DYNAMIC gaslist_strcat_setpoint, do_switch_sp | |
240 MENU_END | |
241 | |
242 | |
0 | 243 do_divemode_sensor: |
244 ; Set customview to 1 (HUD Data) | |
245 clrf menupos3 ; customview to come-1 | |
246 bsf toggle_customview ; Set flag, the customview will be toggled very soon now... | |
247 movlw .1 | |
248 movwf menupos ; Set to first option in divemode menu | |
249 MENU_BEGIN tGaslist, .2 | |
250 MENU_CALL tDivemenu_UseSensor, do_switch_to_sensor | |
251 MENU_CALL tExit, do_continue_main_divemenu | |
252 MENU_END | |
253 | |
254 do_divemode_togglegf: | |
255 ; Set customview to 5 (GF informations) | |
256 movlw .4 | |
257 movwf menupos3 ; Customview to come-1 | |
258 bsf toggle_customview ; Set flag, the customview will be toggled very soon now... | |
259 movlw .1 | |
260 movwf menupos ; Set to first option in divemode menu | |
261 MENU_BEGIN tDivemenu_ToggleGF, .2 | |
262 MENU_CALL tDivemenu_ToggleGF, do_togglegf | |
263 MENU_CALL tExit, do_continue_main_divemenu | |
264 MENU_END | |
265 | |
266 END |