Mercurial > public > hwos_code
annotate src/divemode.asm @ 389:9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
CHANGE: Logbook shows start-of-dive date and time for dives made with firmware >=1.92
BUGFIX: Text alignment in logbook
author | heinrichsweikamp |
---|---|
date | Tue, 27 Oct 2015 13:45:10 +0100 |
parents | 3c55627d5f8f |
children | 1f2e35f5a5aa |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File divemode.asm | |
4 ; | |
5 ; Divemode | |
6 ; | |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-08-15 : [mH] moving from OSTC code | |
11 | |
275 | 12 #include "hwos.inc" ; Mandatory header |
0 | 13 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c |
14 #include "tft_outputs.inc" | |
15 #include "strings.inc" | |
16 #include "tft.inc" | |
17 #include "eeprom_rs232.inc" | |
18 #include "isr.inc" | |
19 #include "math.inc" | |
20 #include "wait.inc" | |
21 #include "customview.inc" | |
22 #include "start.inc" | |
23 #include "adc_lightsensor.inc" | |
24 #include "ghostwriter.inc" | |
25 #include "i2c.inc" | |
113 | 26 #include "calibrate.inc" |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
27 #include "convert.inc" |
0 | 28 |
29 gui CODE | |
30 | |
31 global diveloop | |
32 diveloop: | |
33 banksel common | |
34 call speed_normal | |
35 call diveloop_boot ; Boot tasks for all modes | |
36 | |
37 ; Startup Tasks for all modes | |
206 | 38 call TFT_boot ; Initialize TFT (includes clear screen) |
0 | 39 call TFT_divemode_mask ; Display mask |
40 call TFT_temp_divemode ; Displays temperature | |
39
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
38
diff
changeset
|
41 movff customview_divemode,menupos3 ; Reload last customview |
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
38
diff
changeset
|
42 call customview_mask ; Redraw last custom view |
0 | 43 |
44 btfsc FLAG_apnoe_mode | |
45 bsf realdive ; Set Realdive flag in Apnoe mode | |
46 | |
47 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode | |
48 bra diveloop_loop | |
49 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode | |
50 bra diveloop_loop | |
51 | |
52 call TFT_active_gas_divemode ; Display gas/Setpoint | |
53 call TFT_display_ndl_mask ; display "NDL" | |
54 | |
55 ; +@5 init | |
56 setf WREG ; WAIT marker: display "---" | |
57 movff WREG,int_O_extra_ascenttime+0 | |
58 movff WREG,int_O_extra_ascenttime+1 | |
59 movlw 1 | |
60 movwf apnoe_mins ; Start compute after next cycle. | |
61 | |
62 ;-------------------------------------------------------------------------------------------------------- | |
63 diveloop_loop: ; The diveloop starts here | |
64 btfss onesecupdate | |
65 bra diveloop_loop3 | |
66 | |
67 ; tasks any new second... | |
178 | 68 bcf onesecupdate ; one seconds update, clear flag here in case it's set again in ISR before all tasks are done. |
69 | |
0 | 70 btfsc FLAG_apnoe_mode ; Only in apnoe mode |
71 bra diveloop_loop1b ; One Second Tasks in Apnoe mode | |
72 | |
73 call TFT_divemins ; Display (new) divetime! | |
74 call customview_second ; Do every-second tasks for the custom view area | |
131 | 75 call divemode_check_for_warnings ; Check for any warnings |
0 | 76 |
77 ; Tasks only for deco modes | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
78 btfsc show_safety_stop ; Show the safety stop? |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
79 call TFT_show_safety_stop ; Yes, show/delete if done. |
0 | 80 call calc_deko_divemode ; calculate decompression and display result (any two seconds) |
81 bra diveloop_loop1x ; Common Tasks | |
82 | |
83 diveloop_loop1b: | |
84 ; Tasks only for Apnoe mode | |
131 | 85 rcall divemode_apnoe_tasks ; 1 sec. Apnoe tasks |
134
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
86 call customview_second ; Do every-second tasks for the custom view area |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
87 bra diveloop_loop1x ; Common Tasks |
0 | 88 |
89 diveloop_loop1x: | |
90 ; Common 1sec. tasks for all modes | |
131 | 91 rcall timeout_divemode ; dive finished? This routine sets the required flags |
92 rcall set_dive_modes ; tests if depth>threshold | |
93 rcall set_min_temp ; store min. temp if required | |
0 | 94 |
95 btfsc store_sample ; store new sample? | |
96 call store_dive_data ; Store profile data | |
97 | |
98 btfss divemode ; Dive finished? | |
99 goto ghostwriter_end_dive ; Dive finished! | |
100 | |
101 btfsc divemode_gaschange ; Gas switch flag set? | |
102 rcall gas_switched_common ; Yes | |
103 | |
104 btfsc toggle_gf ; =1: Toggle GF/aGF | |
105 rcall divemodemode_togglegf ; Toggle aGF/GF | |
106 | |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
107 btfsc FLAG_ccr_mode ; In CCR mode... |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
108 call check_dive_autosp ; ...check for Auto-SP |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
109 |
113 | 110 call compute_ppo2 ; compute mv_sensorX and ppo2_sensorX arrays |
111 | |
0 | 112 diveloop_loop3: |
113 rcall test_switches_divemode ; Check switches in divemode | |
114 | |
115 global diveloop_loop4 | |
116 diveloop_loop4: ; Menu-Exit returns here... | |
117 btfsc toggle_customview ; Next view? | |
118 call customview_toggle ; Yes, show next customview (and delete this flag) | |
119 | |
120 btfsc pressure_refresh ; new pressure available? | |
121 rcall update_temp_and_or_depth ; Yes, display new depth and clear "pressure_refresh" flag | |
122 | |
123 btfsc oneminupdate ; one minute tasks | |
124 rcall update_divemode60 ; Update clock, etc. | |
125 | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
220
diff
changeset
|
126 ; btfss quarter_second_update |
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
220
diff
changeset
|
127 ; bra diveloop_loop4a |
83 | 128 |
0 | 129 bcf quarter_second_update |
130 movlw .6 | |
131 cpfseq menupos3 ; in compass view? | |
132 bra diveloop_loop4a ; No | |
256
5b4ef0b9090d
place compass display code into compass_ops.asm
heinrichsweikamp
parents:
255
diff
changeset
|
133 extern TFT_dive_compass_heading |
0 | 134 call TFT_dive_compass_heading ; Yes, update compass heading value |
135 diveloop_loop4a: | |
136 btfsc enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump) | |
137 bra diveloop_loop5 | |
138 bra diveloop_loop6 | |
139 diveloop_loop5: | |
140 btfss vusb_in ; USB (still) plugged in? | |
141 bcf enable_screen_dumps ; No, clear flag | |
142 call rs232_get_byte | |
143 btfsc rs232_recieve_overflow | |
144 bra diveloop_loop6 | |
145 movlw "l" | |
146 cpfseq RCREG1 | |
147 bra diveloop_loop6 | |
148 call TFT_dump_screen ; Dump the screen contents | |
149 diveloop_loop6: | |
150 | |
151 bra diveloop_loop ; Loop the divemode | |
152 ;-------------------------------------------------------------------------------------------------------- | |
153 | |
154 | |
155 divemode_apnoe_tasks: ; 1 sec. Apnoe tasks | |
134
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
156 call TFT_display_apnoe_descent ; Yes, Show descent timer |
0 | 157 call TFT_max_pressure ; use normal max. depth |
158 | |
159 btfsc divemode2 ; Time running? | |
160 bra divemode_apnoe_tasks2 ; New descent, reset data if flag is set | |
161 | |
162 rcall apnoe_calc_maxdepth | |
163 call TFT_display_apnoe_surface | |
164 call TFT_display_apnoe_last_max ; Show last max. depth | |
165 incf apnoe_surface_secs,F | |
166 movlw d'60' | |
167 cpfseq apnoe_surface_secs | |
168 bra divemode_apnoe_tasks1 | |
169 clrf apnoe_surface_secs | |
170 incf apnoe_surface_mins,F | |
171 | |
172 divemode_apnoe_tasks1: | |
173 bcf FLAG_active_descent ; Clear flag | |
174 btfsc divemode2 ; Time running? | |
175 return ; Yes, return | |
176 bsf FLAG_active_descent ; Set Flag | |
177 return | |
178 | |
179 divemode_apnoe_tasks2: | |
180 btfss FLAG_active_descent ; Are we descending? | |
181 return ; No, We are at the surface | |
182 rcall apnoe_calc_maxdepth ; Yes! | |
183 call TFT_apnoe_clear_surface ; Clear Surface timer | |
184 clrf apnoe_timeout_counter ; Delete timeout | |
185 clrf apnoe_surface_secs | |
186 clrf apnoe_surface_mins | |
187 clrf apnoe_secs | |
188 clrf apnoe_mins ; Reset Descent time | |
189 movlw .0 | |
190 movff WREG,max_pressure+0 | |
191 movff WREG,max_pressure+1 ; Reset Max. Depth | |
192 bcf FLAG_active_descent ; Clear flag | |
193 return | |
194 | |
195 global apnoe_calc_maxdepth | |
196 apnoe_calc_maxdepth: | |
197 movff apnoe_max_pressure+0,sub_a+0 | |
198 movff apnoe_max_pressure+1,sub_a+1 | |
199 movff max_pressure+0,sub_b+0 | |
200 movff max_pressure+1,sub_b+1 | |
201 call subU16 ; sub_c = sub_a - sub_b | |
202 ; apnoe_max_pressure<max_pressure -> neg_flag=1 | |
203 ; max_pressure<=apnoe_max_pressure -> neg_flag=0 | |
204 btfss neg_flag | |
205 return | |
206 ;apnoe_max_pressure<max_pressure | |
207 movff max_pressure+0,apnoe_max_pressure+0 | |
208 movff max_pressure+1,apnoe_max_pressure+1 | |
209 return | |
210 | |
211 | |
212 calc_deko_divemode: | |
213 btfsc twosecupdate ; two seconds after the last call | |
214 bra calc_deko_divemode2 ; Yes, calculate and display deco data ("first second") | |
215 | |
216 bsf twosecupdate ; No, but next second! | |
217 ; Routines used in the "other second" | |
218 call calc_average_depth ; calculate average depth | |
219 call calc_velocity ; calculate vertical velocity and display if > threshold (every two seconds) | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
220 call set_reset_safety_stop ; Set flags for safety stop and/or reset safety stop |
0 | 221 call TFT_debug_output |
222 | |
223 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode | |
224 return | |
225 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode | |
226 return | |
227 | |
228 ; Calculate CNS | |
229 rcall set_actual_ppo2 ; Set char_I_actual_ppO2 | |
230 clrf WREG | |
231 movff WREG,char_I_step_is_1min ; Make sure to be in 2sec mode. | |
232 call deco_calc_CNS_fraction ; calculate CNS | |
233 movlb b'00000001' ; rambank 1 selected | |
234 | |
235 ; Check for a gas change | |
236 rcall check_gas_change ; Checks if a better gas should be selected (by user) | |
237 | |
238 return | |
239 | |
240 global set_actual_ppo2 | |
241 set_actual_ppo2: ; calculate ppO2 in 0.01bar (e.g. 150 = 1.50 bar ppO2) | |
111 | 242 btfsc divemode ; in divemode |
243 bra set_actual_ppo2_dive ; Yes | |
244 ; No, use simulated ambient pressure for char_I_actual_ppO2 | |
245 movff char_I_bottom_depth,WREG | |
246 mullw .100 | |
247 movlw LOW(.1000) | |
248 addwf PRODL,W | |
249 movwf xA+0 | |
250 movlw HIGH(.1000) | |
251 addwfc PRODH,W | |
252 movwf xA+1 ; P_amb in millibar (1000 = 1.00 bar). | |
253 bra set_actual_ppo2_common | |
254 set_actual_ppo2_dive: | |
0 | 255 SAFE_2BYTE_COPY amb_pressure, xA ; P_amb in millibar (1000 = 1.00 bar). |
111 | 256 set_actual_ppo2_common: |
113 | 257 movlw d'10' |
0 | 258 movwf xB+0 |
259 clrf xB+1 | |
260 call div16x16 ; xC=p_amb/10 (100 = 1.00 bar). | |
261 movff xC+0,xA+0 | |
262 movff xC+1,xA+1 | |
263 movff char_I_O2_ratio,xB+0 | |
264 clrf xB+1 | |
265 call mult16x16 ; char_I_O2_ratio * (p_amb/10) | |
266 movff xC+0,xA+0 | |
267 movff xC+1,xA+1 | |
268 movlw d'100' | |
269 movwf xB+0 | |
270 clrf xB+1 | |
271 call div16x16 ; xC=(char_I_O2_ratio * p_amb/10)/100 | |
272 | |
273 ; Copy ppO2 for CNS calculation | |
274 tstfsz xC+1 ; Is ppO2 > 2.55bar ? | |
275 setf xC+0 ; yes: bound to 2.55... better than wrap around. | |
276 | |
277 movff xC+0, char_I_actual_ppO2 ; copy last ppO2 to buffer register | |
278 btfsc is_bailout ; In Bailout? | |
279 return ; Yes, done. | |
280 ; No Bailout, check for ccr mode | |
281 btfsc FLAG_ccr_mode ; If FLAG_ccr_mode=1... | |
282 movff char_I_const_ppO2, char_I_actual_ppO2 ; ...copy last ppO2 to buffer register | |
283 return | |
284 | |
195 | 285 check_fallback_clear: |
286 call check_sensors ; Setups "use_O2_sensorX" flags | |
287 ; Copy use flags to voting logic flags in case we are no longer in fallback | |
288 btfsc use_O2_sensor1 | |
289 bsf voting_logic_sensor1 | |
290 btfsc use_O2_sensor2 | |
291 bsf voting_logic_sensor2 | |
292 btfsc use_O2_sensor3 | |
293 bsf voting_logic_sensor3 | |
294 rcall divemode_setup_sensor_values ; Setup sensor values | |
295 call check_sensors ; Check O2 sensor thresholds for fallback | |
296 return | |
0 | 297 |
298 calc_deko_divemode2: | |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
299 bcf twosecupdate |
0 | 300 |
301 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode | |
302 return | |
303 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode | |
304 return | |
305 | |
306 extern deco_setup_dive | |
307 call deco_setup_dive ; Pass all parameters to the C code | |
308 | |
195 | 309 |
310 btfsc setpoint_fallback ; Are we in Fallback? | |
311 rcall check_fallback_clear ; Yes, check if we still have fallback condition | |
312 | |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
313 bcf setpoint_fallback ; =1: Fallback to SP1 due to external O2 sensor failure |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
314 |
277
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
315 btfsc FLAG_ccr_mode ; In CCR mode? |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
316 rcall calc_deko_divemode_sensor ; External sensor stuff |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
317 |
0 | 318 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; C-code needs the ambient pressure |
319 clrf WREG | |
320 movff WREG,char_I_step_is_1min ; Force 2 second deco mode | |
321 | |
322 clrf TMR5L | |
323 clrf TMR5H ; 30,51757813µs/bit in TMR5L:TMR5H | |
324 call deco_calc_hauptroutine ; calc_tissue | |
325 movlb .1 | |
326 | |
327 movff char_O_deco_status,WREG ; Is a compute cycle finished ? | |
328 iorwf WREG,F | |
329 btfss STATUS,Z | |
330 return ; Return is status <> 0 | |
331 | |
332 ; Check if deco stops are necessary ? | |
333 movff char_O_first_deco_depth,wait_temp ; copy ceiling to temp register | |
334 tstfsz wait_temp ; Ceiling<0m? | |
335 bra calc_deko_divemode3 ; Yes! | |
336 | |
337 btfsc decostop_active ; Already in nodeco mode ? | |
338 call TFT_display_ndl_mask ; No, Clear deco data, display nostop time | |
339 bcf decostop_active ; clear flag (again) | |
340 | |
341 ; Copy for profile recording | |
342 clrf decodata+0 | |
343 movff char_O_nullzeit,decodata+1 ; NDL | |
344 | |
345 call TFT_display_ndl ; display no deco limit | |
346 return | |
347 | |
348 calc_deko_divemode3: | |
349 btfss decostop_active ; Already in deco mode ? | |
350 call TFT_display_deko_mask ; No, clear nostop time, display decodata | |
351 bsf decostop_active ; Set flag (again) | |
352 | |
353 ; Copy for profile recording | |
354 movff char_O_first_deco_depth,decodata+0 ; ceiling | |
355 movff char_O_first_deco_time,decodata+1 ; length of first stop in minues | |
356 call TFT_display_deko ; display decodata | |
357 call TFT_show_TTS_divemode ; display TTS | |
358 | |
359 movff char_I_extra_time,WREG | |
360 tstfsz WREG ; extra time = 0? | |
361 bra calc_deko_divemode4 ; No, compute it | |
362 return | |
363 | |
364 calc_deko_divemode4: | |
365 ; Check if extra cycles are needed to compute @5 variant: | |
366 decfsz apnoe_mins,F ; Reached count-down ? | |
367 return ; No: don't compute yet. | |
368 | |
369 movlw .6 | |
370 movff WREG,char_O_deco_status ; Stole next cycles for @5 variant. | |
371 | |
372 movlw .2 ; Restart countdown. | |
373 movwf apnoe_mins | |
374 return ; done. | |
277
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
375 |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
376 calc_deko_divemode_sensor: ; External sensor stuff |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
377 movff opt_ccr_mode,WREG ; =0: Fixed SP, =1: Sensor, =2: Auto SP |
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
378 sublw .1 ; opt_ccr_mode = 1 (Sensor)? |
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
379 bnz calc_deko_divemode_sensor_done ; No, return |
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
380 |
277
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
381 rcall divemode_setup_sensor_values ; Setup sensor values |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
382 call check_sensors ; Check O2 sensor thresholds for fallback |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
383 movff sensor_setpoint,char_I_const_ppO2; Copy sensor result |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
384 |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
385 TSTOSS opt_sensor_fallback ; =1: Fallback to SP1 when sensor is lost |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
386 return ; Never fallback |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
387 |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
388 btfsc is_bailout ; In bailout? |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
389 return ; Never fallback in bailout |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
390 ; Check if we should fallback to SP1 |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
391 btfsc use_O2_sensor1 |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
392 return ; At least one sensor is active, no fallback |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
393 btfsc use_O2_sensor2 |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
394 return ; At least one sensor is active, no fallback |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
395 btfsc use_O2_sensor3 |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
396 return ; At least one sensor is active, no fallback |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
397 ; No sensor in use -> fallback |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
398 movff char_I_setpoint_cbar+0,char_I_const_ppO2 ; Setup fixed Setpoint (Always fallback to SP1), overwrite sensor result |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
399 bsf setpoint_fallback ; =1: Fallback to SP1 due to external O2 sensor failure |
339 | 400 calc_deko_divemode_sensor_done: |
277
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
401 return |
0 | 402 |
403 ;----------------------------------------------------------------------------- | |
404 | |
405 divemodemode_togglegf: ; Toggle aGF/GF | |
406 bcf toggle_gf ; clear flag | |
407 btg use_agf ; Toggle GF | |
408 call TFT_gf_mask ; Setup Mask | |
409 clrf WREG | |
410 movff WREG,char_O_deco_status ; Restart decoplan computation | |
411 return | |
412 | |
193 | 413 global divemode_setup_sensor_values |
0 | 414 divemode_setup_sensor_values: |
415 ; sum up sensor values (in xA:2) and active sensors in (xB:2) | |
416 clrf xB+0 | |
417 clrf xB+1 | |
418 clrf xA+0 | |
419 clrf xA+1 | |
192 | 420 btfss use_O2_sensor1 ; Sensor1 active? |
421 bra divemode_setup_sensor_values2 ; No | |
422 btfss voting_logic_sensor1 ; Sensor within voting logic? | |
0 | 423 bra divemode_setup_sensor_values2 ; No |
424 movf o2_ppo2_sensor1,W | |
425 addwf xA+0 | |
426 movlw .0 | |
427 addwfc xA+1 ; Add into xA:2 | |
428 incf xB+0,F ; Add a sensor | |
429 divemode_setup_sensor_values2: | |
192 | 430 btfss use_O2_sensor2 ; Sensor2 active? |
431 bra divemode_setup_sensor_values3 ; No | |
432 btfss voting_logic_sensor2 ; Sensor within voting logic? | |
0 | 433 bra divemode_setup_sensor_values3 ; No |
434 movf o2_ppo2_sensor2,W | |
435 addwf xA+0 | |
436 movlw .0 | |
437 addwfc xA+1 ; Add into xA:2 | |
438 incf xB+0,F ; Add a sensor | |
439 divemode_setup_sensor_values3: | |
192 | 440 btfss use_O2_sensor3 ; Sensor3 active? |
441 bra divemode_setup_sensor_values4 ; No | |
442 btfss voting_logic_sensor3 ; Sensor within voting logic? | |
0 | 443 bra divemode_setup_sensor_values4 ; No |
444 movf o2_ppo2_sensor3,W | |
445 addwf xA+0 | |
446 movlw .0 | |
447 addwfc xA+1 ; Add into xA:2 | |
448 incf xB+0,F ; Add a sensor | |
449 divemode_setup_sensor_values4: | |
450 call div16x16 ; xA/xB=xC with xA+0 as remainder | |
451 movff xC+0,sensor_setpoint ; Copy result | |
452 return | |
453 | |
454 calc_velocity: ; called every two seconds | |
455 btfss divemode | |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
277
diff
changeset
|
456 return ; display velocity only in divemode (Not at the surface after dive) |
0 | 457 |
458 calc_velocity2: | |
459 SAFE_2BYTE_COPY amb_pressure, sub_a | |
460 movff last_pressure_velocity+0,sub_b+0 | |
461 movff last_pressure_velocity+1,sub_b+1 | |
462 movff sub_a+0,last_pressure_velocity+0 ; store old value for velocity | |
463 movff sub_a+1,last_pressure_velocity+1 | |
464 | |
465 call subU16 ; sub_c = amb_pressure - last_pressure | |
466 | |
318
6d8c82fe5a01
VSIbar #3d: more filter, neg_flag_velocity close to calculation, debug color for descend bar
janos_kovacs <kovjanos@gmail.com>
parents:
315
diff
changeset
|
467 bcf neg_flag_velocity |
6d8c82fe5a01
VSIbar #3d: more filter, neg_flag_velocity close to calculation, debug color for descend bar
janos_kovacs <kovjanos@gmail.com>
parents:
315
diff
changeset
|
468 btfsc neg_flag |
6d8c82fe5a01
VSIbar #3d: more filter, neg_flag_velocity close to calculation, debug color for descend bar
janos_kovacs <kovjanos@gmail.com>
parents:
315
diff
changeset
|
469 bsf neg_flag_velocity |
6d8c82fe5a01
VSIbar #3d: more filter, neg_flag_velocity close to calculation, debug color for descend bar
janos_kovacs <kovjanos@gmail.com>
parents:
315
diff
changeset
|
470 |
0 | 471 movff sub_c+0,xA+0 |
472 movff sub_c+1,xA+1 | |
473 movlw d'39' ; 77 when called every second.... | |
474 movwf xB+0 | |
475 clrf xB+1 | |
476 call mult16x16 ; differential pressure in mbar*77... | |
477 movff xC+0,divA+0 | |
478 movff xC+1,divA+1 | |
479 movlw d'7' | |
480 movwf divB+0 | |
481 call div16 ; devided by 2^7 equals velocity in m/min | |
482 | |
483 movlw d'99' | |
484 cpfsgt divA+0 ; limit to 99m/min | |
485 bra calc_velocity3 | |
486 movwf divA+0 ; divA=99 | |
487 | |
488 calc_velocity3: | |
489 call TFT_display_velocity ; With divA+0 = m/min... | |
490 return | |
491 | |
492 | |
493 ;============================================================================= | |
494 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
495 set_reset_safety_stop: ; Set flags for safety stop and/or reset safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
496 TSTOSS opt_enable_safetystop ; =1: A safety stop is shown |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
497 bra delete_safety_stop ; No, don't show safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
498 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
499 btfsc decostop_active ; Is a deco stop displayed? |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
500 bra delete_safety_stop ; Yes, don't show safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
501 ; Below "safety_stop_reset"? Set flag and reset count-down timer |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
502 SAFE_2BYTE_COPY rel_pressure, lo |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
503 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
504 movff lo,sub_a+0 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
505 movff hi,sub_a+1 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
506 movlw LOW safety_stop_reset |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
507 movwf sub_b+0 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
508 movlw HIGH safety_stop_reset |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
509 movwf sub_b+1 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
510 call subU16 ; sub_c = sub_a - sub_b |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
511 btfss neg_flag |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
512 bra reset_safety_stop ; Below 10m, reset safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
513 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
514 ; Above "safety_stop_end"? Clear flag. |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
515 SAFE_2BYTE_COPY rel_pressure, lo |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
516 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
517 movff lo,sub_a+0 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
518 movff hi,sub_a+1 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
519 movlw LOW safety_stop_end |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
520 movwf sub_b+0 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
521 movlw HIGH safety_stop_end |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
522 movwf sub_b+1 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
523 call subU16 ; sub_c = sub_a - sub_b |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
524 btfsc neg_flag |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
525 bra delete_safety_stop ; Above 3m, remove safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
526 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
527 ; Above "safety_stop_start"? Activate safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
528 SAFE_2BYTE_COPY rel_pressure, lo |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
529 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
530 movff lo,sub_a+0 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
531 movff hi,sub_a+1 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
532 movlw LOW safety_stop_start |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
533 movwf sub_b+0 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
534 movlw HIGH safety_stop_start |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
535 movwf sub_b+1 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
536 call subU16 ; sub_c = sub_a - sub_b |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
537 btfsc neg_flag |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
538 bra acivate_safety_stop ; Above 5m, activate safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
539 bra reset_safety_stop2 ; Pause safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
540 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
541 acivate_safety_stop: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
542 tstfsz safety_stop_countdown ; Countdown at zero? |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
543 bsf show_safety_stop ; No, Set flag! |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
544 return |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
545 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
546 delete_safety_stop: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
547 clrf safety_stop_countdown ; reset timer |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
548 bra reset_safety_stop2 ; Remove safety stop from display |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
549 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
550 reset_safety_stop: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
551 movlw safety_stop_length ;[s] |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
552 movwf safety_stop_countdown ; reset timer |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
553 reset_safety_stop2: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
554 bcf show_safety_stop ; Clear flag |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
555 btfss safety_stop_active ; Safety stop shown |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
556 return ; No, don't delete it |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
557 bcf safety_stop_active ; Clear flag |
131 | 558 call TFT_clear_safety_stop ; Clear safety stop |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
559 return |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
560 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
561 ;============================================================================= |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
562 |
0 | 563 timeout_menuview: |
564 decfsz timeout_counter3,F ; timeout for menuview | |
565 return ; No timeout, return | |
566 ; Timeout, clear e.g. "Menu?" | |
567 goto menuview_toggle_reset ; "returns" | |
568 | |
569 timeout_divemode_menu: | |
570 decfsz timeout_counter3,F ; timeout for divemode menu | |
571 return | |
572 | |
573 global timeout_divemode_menu2 | |
574 timeout_divemode_menu2: ; Called from divemenu_tree.asm | |
575 bcf divemode_menu ; Timeout! Clear flag | |
576 call TFT_clear_divemode_menu ; Clear menu | |
577 call TFT_active_gas_divemode ; Redraw gas/setpoint/diluent | |
578 bcf blinking_better_gas ; Clear flag to have temperature updated once | |
579 call TFT_temp_divemode ; Displays temperature | |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
580 call TFT_draw_gassep_line ; Gas separator grid in spec mode only |
0 | 581 |
582 btfss decostop_active ; In deco mode ? | |
583 bra timeout_divemode_menu_ndl ; No, show NDL again | |
584 ; Show deco | |
585 call TFT_display_deko_mask ; clear nostop time, display decodata | |
586 call TFT_display_deko | |
587 call TFT_show_TTS_divemode | |
588 return | |
589 timeout_divemode_menu_ndl: ; Show NDL | |
590 call TFT_display_ndl_mask ; Clear deco data, display nostop time | |
591 call TFT_display_ndl | |
592 return | |
593 | |
594 timeout_divemode: | |
595 btfsc divemode_menu ; Divemode menu active? | |
596 rcall timeout_divemode_menu ; Yes, check the timeout for it... | |
597 | |
598 btfsc menuview ; is a menuview shown? | |
599 rcall timeout_menuview ; Yes, check the timeout for it... | |
600 | |
601 btfss realdive ; Dive longer then one minute | |
602 return | |
603 | |
604 btfsc FLAG_apnoe_mode ; In Apnoe mode? | |
35
eca4a201d8cf
change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents:
23
diff
changeset
|
605 bra timeout_divemode2 ; Yes, use apnoe_timeout [min] for timeout |
0 | 606 |
607 ifndef __DEBUG | |
608 btfsc simulatormode_active ; In Simulator mode? | |
609 bra timeout_divemode3 ; Yes, use simulator timeout | |
610 endif | |
611 | |
612 bcf divemode | |
148 | 613 infsnz timeout_counter,F |
614 incf timeout_counter2,F ; timeout is 15bits | |
0 | 615 |
616 movlw LOW divemode_timeout | |
617 movwf sub_a+0 | |
618 movlw HIGH divemode_timeout | |
619 movwf sub_a+1 | |
620 | |
621 movff timeout_counter, sub_b+0 | |
622 movff timeout_counter2, sub_b+1 | |
623 call subU16 ; sub_c = sub_a - sub_b | |
624 btfss neg_flag ; Result negative? | |
625 bsf divemode ; No, set flag | |
626 return | |
627 | |
628 timeout_divemode2: | |
629 incf timeout_counter,F ; seconds... | |
630 movlw d'60' | |
631 cpfseq timeout_counter ; timeout_counter=60? | |
632 return ; No. | |
633 ; One minute timeout done. | |
634 clrf timeout_counter | |
635 bcf divemode | |
636 incf apnoe_timeout_counter,F | |
637 movlw apnoe_timeout ; apnoe timeout [min] | |
638 cpfseq apnoe_timeout_counter | |
639 bsf divemode | |
640 return | |
641 | |
642 timeout_divemode3: | |
643 bcf divemode | |
644 incf timeout_counter,F | |
645 movlw simulator_timeout ; simulator timeout | |
646 cpfsgt timeout_counter | |
647 bsf divemode | |
648 return | |
649 | |
650 update_temp_and_or_depth: ; New sensor data arrived... | |
651 btfsc temp_changed | |
652 call TFT_temp_divemode ; Displays temperature | |
653 | |
654 btfsc pressure_refresh | |
655 call TFT_depth ; Displays new depth | |
656 | |
657 rcall set_max_depth ; update max. depth if required | |
658 bcf pressure_refresh ; until new pressure is available | |
659 return | |
660 | |
661 update_divemode60: ; update any minute | |
662 call get_battery_voltage ; gets battery voltage | |
218 | 663 rcall set_powersafe ; Battery low? |
0 | 664 call TFT_max_pressure ; Update max. depth |
665 call customview_minute ; Do every-minute tasks for the custom view area | |
666 bcf oneminupdate | |
667 | |
668 btfss simulatormode_active ; in simulator mode? | |
669 return ; No | |
670 ; Yes, quite dive mode simulation after 21*256s=89min:36s | |
671 movlw .20 | |
672 cpfsgt total_divetime_seconds+1 ; Timeout? | |
673 return ; No | |
674 ifdef __DEBUG | |
675 return ; No simulator timeout in debug mode | |
676 endif | |
677 bra divemode_option1 ; Yes, set to 0m and "return" | |
678 | |
679 set_max_depth: | |
680 movff max_pressure+0,sub_a+0 | |
681 movff max_pressure+1,sub_a+1 | |
682 SAFE_2BYTE_COPY rel_pressure, sub_b | |
683 call subU16 ; sub_c = sub_a - sub_b | |
684 ; max_pressure<rel_pressure -> neg_flag=1 | |
685 ; rel_pressure<=max_pressure -> neg_flag=0 | |
686 btfss neg_flag | |
687 return | |
688 ; max_pressure<rel_pressure | |
689 movff sub_b+0,max_pressure+0 | |
690 movff sub_b+1,max_pressure+1 | |
691 call TFT_max_pressure ; No, use normal max. depth | |
692 return | |
693 | |
694 set_min_temp: | |
695 movff minimum_temperature+0,sub_a+0 | |
696 movff minimum_temperature+1,sub_a+1 | |
697 SAFE_2BYTE_COPY temperature,sub_b | |
698 call sub16 ; sub_c = sub_a - sub_b | |
699 ; minimum_temperature<T -> neg_flag=1 | |
700 ; T<=minimum_temperature -> neg_flag=0 | |
701 btfsc neg_flag | |
702 return | |
703 ; minimum_temperature>=T | |
704 movff sub_b+0,minimum_temperature+0 | |
705 movff sub_b+1,minimum_temperature+1 | |
706 return | |
707 | |
708 global set_dive_modes | |
709 set_dive_modes: | |
710 btfsc high_altitude_mode ; In high altitude (Fly) mode? | |
711 bra set_dive_modes3 ; Yes! | |
712 | |
713 set_dive_modes0: | |
714 movlw LOW start_dive_threshold | |
715 movwf sub_a+0 ; dive_treshold is in cm | |
716 movlw HIGH start_dive_threshold | |
717 movwf sub_a+1 ; dive_treshold is in cm | |
718 | |
719 set_dive_modes1: | |
720 SAFE_2BYTE_COPY rel_pressure, sub_b | |
721 call subU16 ; sub_c = sub_a - sub_b | |
722 | |
723 btfss neg_flag | |
724 bra set_dive_modes2 ; too shallow (rel_pressure<dive_threshold) | |
725 | |
726 btfsc realdive ; Dive longer than one minute? | |
727 clrf timeout_counter ; Yes, reset timout counter | |
728 | |
729 bsf divemode ; (Re-)Set divemode flag | |
730 bsf divemode2 ; displayed divetime is running | |
731 return | |
732 | |
733 set_dive_modes2: | |
734 bcf divemode2 ; Stop time | |
735 btfss realdive ; dive longer then one minute? | |
736 bcf divemode ; no -> this was no real dive | |
737 return ; No, return | |
738 | |
739 | |
740 set_dive_modes3: ; High-altitude mode | |
741 btfsc realdive ; dive longer then one minute? | |
742 bra set_dive_modes0 ; Yes -> this is a real dive -> Use start_dive_threshold or ascend | |
743 | |
744 movlw HIGH high_altitude_dive_threshold | |
745 movwf sub_a+1 | |
746 movlw LOW high_altitude_dive_threshold | |
747 movwf sub_a+0 | |
748 bra set_dive_modes1 | |
749 | |
750 set_powersafe: | |
751 movlw color_code_battery_low+1; [%] | |
752 cpfslt batt_percent | |
753 return | |
754 | |
755 movlw d'7' ; Type of Alarm (Battery Low) | |
756 movwf AlarmType ; Copy to Alarm Register | |
757 bsf event_occured ; Set Event Flag | |
758 movlw .0 | |
759 movff WREG,opt_brightness ; Set Brightness to ECO | |
760 return ; return | |
761 | |
762 calc_average_depth: | |
176 | 763 btfsc reset_average_depth ; Reset the Average depth? |
0 | 764 rcall reset_average1 ; Reset the resettable average depth |
765 | |
766 ; 1. Add new 2xdepth to the Sum of depths registers | |
767 SAFE_2BYTE_COPY rel_pressure, xB ; Buffer... | |
768 bcf STATUS,C | |
769 rlcf xB+0,F | |
770 rlcf xB+1,F ; x2 | |
771 | |
772 movf xB+0,w | |
773 addwf average_depth_hold+0,F | |
774 movf xB+1,w | |
775 addwfc average_depth_hold+1,F | |
776 movlw d'0' | |
777 addwfc average_depth_hold+2,F | |
778 addwfc average_depth_hold+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar | |
779 | |
780 ; Do the same for the _total registers (Non-Resettable) | |
781 movf xB+0,w | |
782 addwf average_depth_hold_total+0,F | |
783 movf xB+1,w | |
784 addwfc average_depth_hold_total+1,F | |
785 movlw d'0' | |
786 addwfc average_depth_hold_total+2,F | |
787 addwfc average_depth_hold_total+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar | |
788 | |
789 ; 2. Compute Average Depth on base of average_divesecs:2 | |
790 movff average_divesecs+0,xB+0 | |
791 movff average_divesecs+1,xB+1 ; Copy | |
792 movff average_depth_hold+0,xC+0 | |
793 movff average_depth_hold+1,xC+1 | |
794 movff average_depth_hold+2,xC+2 | |
795 movff average_depth_hold+3,xC+3 | |
796 | |
797 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
798 movff xC+0,avr_rel_pressure+0 | |
799 movff xC+1,avr_rel_pressure+1 | |
800 | |
89
c34516c99ca8
BUGFIX: No average depth for end-of-dive portion (<1m)
heinrichsweikamp
parents:
86
diff
changeset
|
801 btfss divemode2 ; displayed divetime is running? |
c34516c99ca8
BUGFIX: No average depth for end-of-dive portion (<1m)
heinrichsweikamp
parents:
86
diff
changeset
|
802 return ; No (e.g. too shallow) |
c34516c99ca8
BUGFIX: No average depth for end-of-dive portion (<1m)
heinrichsweikamp
parents:
86
diff
changeset
|
803 |
0 | 804 ; 3. Compute Total Average Depth on base of total_divetime_seconds:2 |
805 movff total_divetime_seconds+0,xB+0 | |
806 movff total_divetime_seconds+1,xB+1 ; Copy | |
807 movff average_depth_hold_total+0,xC+0 | |
808 movff average_depth_hold_total+1,xC+1 | |
809 movff average_depth_hold_total+2,xC+2 | |
810 movff average_depth_hold_total+3,xC+3 | |
811 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
812 movff xC+0,avr_rel_pressure_total+0 | |
813 movff xC+1,avr_rel_pressure_total+1 | |
814 return | |
815 | |
816 reset_average1: | |
817 clrf average_depth_hold+0 | |
818 clrf average_depth_hold+1 | |
819 clrf average_depth_hold+2 | |
820 clrf average_depth_hold+3 ; Clear average depth register | |
821 movlw d'2' | |
822 movwf average_divesecs+0 | |
823 clrf average_divesecs+1 | |
824 bcf reset_average_depth ; Clear flag | |
825 return | |
826 | |
827 test_switches_divemode: ; checks switches in divemode | |
828 btfsc divemode_menu ; Divemode menu shown? | |
829 bra test_switches_divemode_menu ; Yes, use menu processor | |
830 btfsc switch_left | |
831 bra test_switches_divemode2 ; Enter button pressed, check if we need to do something | |
832 btfss switch_right | |
833 return ; No button press | |
834 tstfsz menupos2 ; any option shown? | |
835 bra test_switches_divemode1 ; Yes, do option tasks | |
836 bsf toggle_customview ; No, toggle custom view | |
837 return | |
838 | |
839 test_switches_divemode_menu: | |
840 btfsc switch_left | |
841 bra test_switches_divemode_menu2 ; Move cursor | |
842 btfsc switch_right | |
843 bra test_switches_divemode_menu3 ; Enter submenu or do something | |
844 return ; No button press | |
845 | |
846 test_switches_divemode_menu1: | |
847 clrf menupos | |
848 test_switches_divemode_menu2: | |
849 incf menupos,F | |
850 incf menupos4,W ; menupos4+1 -> WREG | |
851 cpfslt menupos ; >menupos4 (Set in menu_processor.asm)? | |
852 bra test_switches_divemode_menu1; > Yes, set to 1 | |
853 call TFT_divemode_menu_cursor ; Update the cursor | |
854 bcf switch_left | |
855 movlw divemode_menu_timeout ; Reload timeout | |
856 movwf timeout_counter3 ; timeout for divemode menu | |
857 return | |
858 | |
859 test_switches_divemode_menu3: ; Enter submenu or do something | |
860 bcf switch_right | |
861 ; decf menupos,F ; menu_processor needs 0-5... | |
862 extern do_line_menu | |
863 goto do_line_menu ; Warning! Trashes STKPTR and returns to diveloop_loop4: | |
864 | |
865 test_switches_divemode1: | |
866 bcf switch_right | |
867 movlw divemode_menuview_timeout | |
868 movwf timeout_counter3 ; Reload timeout | |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
869 movff menupos2,WREG ; menupos2 holds number of customview/divemode menu function |
0 | 870 dcfsnz WREG,F |
137 | 871 bra divemode_option_gaschange ; Switch to the indicated "better gas" |
872 dcfsnz WREG,F | |
0 | 873 bra divemode_option0 ; Start/Setup Divemode menu |
874 dcfsnz WREG,F | |
875 bra divemode_option1 ; Quit Simulation? | |
876 dcfsnz WREG,F | |
877 bra divemode_option2 ; Descent 1m | |
878 dcfsnz WREG,F | |
879 bra divemode_option3 ; Ascend 1m | |
880 dcfsnz WREG,F | |
881 bra divemode_option4 ; Quit Apnoe mode | |
882 dcfsnz WREG,F | |
883 bra divemode_option5 ; Reset Stopwatch (In Gauge mode) | |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
884 dcfsnz WREG,F |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
885 bra divemode_option6 ; +5mins simulation |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
886 dcfsnz WREG,F |
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
887 bra divemode_option7 ; Store heading |
0 | 888 return |
889 | |
890 test_switches_divemode2: | |
891 call menuview_toggle ; Menu or Simulator tasks | |
892 return | |
893 | |
894 gas_switched_common: | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
895 bcf divemode_gaschange ; Clear flag |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
896 |
274
9347893b74ce
BUGFIX: Fast Gas change near the ppO2 limit could cause switching to a non-available Gas #0
heinrichsweikamp
parents:
256
diff
changeset
|
897 tstfsz menupos ; menupos=0? |
9347893b74ce
BUGFIX: Fast Gas change near the ppO2 limit could cause switching to a non-available Gas #0
heinrichsweikamp
parents:
256
diff
changeset
|
898 bra $+4 ; No |
9347893b74ce
BUGFIX: Fast Gas change near the ppO2 limit could cause switching to a non-available Gas #0
heinrichsweikamp
parents:
256
diff
changeset
|
899 return ; Yes, do not switch gas (There is no Gas #0 !) |
9347893b74ce
BUGFIX: Fast Gas change near the ppO2 limit could cause switching to a non-available Gas #0
heinrichsweikamp
parents:
256
diff
changeset
|
900 |
0 | 901 decf menupos,W ; 1-5 -> 0-4 |
902 btfss FLAG_ccr_mode ; Choose OC Gases | |
903 rcall setup_gas_registers ; With WREG=Gas 0-4 | |
904 btfsc FLAG_ccr_mode ; Choose CC Diluents | |
905 rcall setup_dil_registers ; With WREG=Gas 0-4 | |
906 | |
907 decf menupos,W ; 1-5 -> 0-4 | |
908 btfsc is_bailout ; Choose OC Bailouts (OC Gases) | |
909 rcall setup_gas_registers ; With WREG=Gas 0-4 | |
910 | |
911 call TFT_active_gas_divemode ; Display gas/Setpoint | |
912 clrf WREG | |
913 movff WREG,char_O_deco_status ; Restart decoplan computation | |
98 | 914 |
915 ; Set flags for profile recording | |
916 bsf event_occured ; Set global event byte | |
917 btfsc is_bailout ; Choose OC Bailouts (OC Gases) | |
918 bsf bailoutgas_event ; Bailout gas change | |
919 btfss is_bailout ; Choose OC Bailouts (OC Gases) | |
920 bsf stored_gas_changed ; OC gas change | |
0 | 921 return |
922 | |
923 global setup_gas_registers | |
924 setup_gas_registers: ; With WREG=Gas 0-4 | |
925 lfsr FSR1,opt_gas_O2_ratio+0 | |
926 movff PLUSW1,char_I_O2_ratio ; O2 (For ppO2 calculations) | |
927 lfsr FSR1,opt_gas_He_ratio+0 | |
928 movff PLUSW1,char_I_He_ratio ; He | |
929 incf WREG,W ; Gas# 1-5 | |
930 movff WREG,char_I_current_gas ; Set gas | |
931 movff WREG,active_gas ; Set for logbook and display | |
932 banksel char_I_O2_ratio | |
933 movf char_I_O2_ratio,W ; Add O2... | |
934 addwf char_I_He_ratio,W ; ...and He... | |
935 sublw .100 ; ...subtract both from 100 | |
936 movwf char_I_N2_ratio ; -> N2! | |
937 banksel common | |
938 return | |
939 | |
940 global setup_dil_registers | |
941 setup_dil_registers: ; With WREG=dil 0-4 | |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
89
diff
changeset
|
942 btfsc is_bailout |
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
89
diff
changeset
|
943 return ; Ignore in bailout |
0 | 944 lfsr FSR1,opt_dil_O2_ratio+0 |
945 movff PLUSW1,char_I_O2_ratio ; O2 (For ppO2 calculations) | |
946 lfsr FSR1,opt_dil_He_ratio+0 | |
947 movff PLUSW1,char_I_He_ratio ; He | |
948 incf WREG,W ; Gas# 1-5 | |
949 movff WREG,char_I_current_gas ; Set gas | |
950 movff WREG,active_gas ; Set for logbook and display | |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
89
diff
changeset
|
951 movff WREG,active_diluent ; As a backup when switching back from Bailout to CCR |
0 | 952 banksel char_I_O2_ratio |
953 movf char_I_O2_ratio,W ; Add O2... | |
954 addwf char_I_He_ratio,W ; ...and He... | |
955 sublw .100 ; ...subtract both from 100 | |
956 movwf char_I_N2_ratio ; -> N2! | |
957 banksel common | |
958 return | |
959 | |
137 | 960 divemode_option_gaschange: ; Switch to the better gas |
961 movff better_gas_number,menupos; 1-5 | |
962 bsf divemode_gaschange ; Change the gas in the dive mode loop... | |
963 call menuview_toggle_reset ; Reset to zero (Zero=no menuview) | |
138
2852b0bd6391
minor: some extra protection against wrong gas selection
heinrichsweikamp
parents:
137
diff
changeset
|
964 bcf better_gas_available ; Clear flag immediately |
137 | 965 return |
966 | |
0 | 967 divemode_option0: ; Start/Setup Divemode menu |
968 call TFT_clear_divemode_menu ; Clear menu area | |
969 bcf menuview | |
970 extern do_main_divemenu | |
971 call do_main_divemenu | |
972 global divemode_option0_return | |
973 divemode_option0_return: | |
974 ; movlw .1 | |
975 ; movwf menupos ; Set to first option in divemode menu | |
976 call TFT_divemode_menu_cursor; Show the cursor | |
977 movlw divemode_menu_timeout | |
978 movwf timeout_counter3 ; timeout for divemode menu | |
979 bsf divemode_menu ; Set flag | |
980 clrf menupos2 ; Clear option counter | |
981 bra diveloop_loop4 ; Goto back to diveloop (Menuprocessor trashes STKPTR!) | |
982 | |
983 divemode_option4: | |
984 movlw d'58' ; two seconds left | |
985 movwf timeout_counter | |
986 movlw apnoe_timeout-1 ; apnoe timeout [min] | |
987 movwf apnoe_timeout_counter | |
988 btfss simulatormode_active ; in simulator mode? | |
989 return ; No | |
990 divemode_option1: ; Quit simulation mode | |
991 banksel isr_backup | |
992 movlw low .1000 | |
993 movwf sim_pressure+0 | |
994 movlw high .1000 | |
995 movwf sim_pressure+1 ; Set to 0m -> End of Dive | |
996 banksel common | |
997 call menuview_toggle_reset ; Reset to zero (Zero=no menuview) | |
998 | |
999 btfss FLAG_apnoe_mode ; In Apnoe mode? | |
1000 return ; No | |
1001 movlw d'58' ; two seconds left | |
1002 movwf timeout_counter | |
1003 movlw apnoe_timeout-1 ; apnoe timeout [min] | |
1004 movwf apnoe_timeout_counter | |
1005 return | |
1006 | |
1007 divemode_option3: ; minus 1m | |
1008 banksel isr_backup | |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
1009 movlw d'100' |
0 | 1010 subwf sim_pressure+0 |
1011 movlw .0 | |
1012 subwfb sim_pressure+1 | |
1013 rcall divemode_simulator_check_limits | |
1014 banksel common | |
1015 return | |
1016 | |
1017 divemode_option2: ; plus 1m | |
1018 banksel isr_backup | |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
1019 movlw d'100' |
0 | 1020 addwf sim_pressure+0 |
1021 movlw .0 | |
1022 addwfc sim_pressure+1 | |
1023 rcall divemode_simulator_check_limits | |
1024 banksel common | |
1025 return | |
1026 | |
1027 divemode_option5: | |
1028 call menuview_toggle_reset ; Reset to zero (Zero=no menuview) | |
1029 bsf reset_average_depth ; Set Flag | |
1030 return | |
1031 | |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1032 divemode_option6: |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1033 bcf divemode2 ; Stop divetime |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1034 movlw .5 |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1035 addwf divemins+0,F |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1036 movlw .0 |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
1037 addwfc divemins+1,F ; Add 5 mins |
385
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1038 movlw LOW (.5*.60) |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1039 addwf average_divesecs+0,F |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1040 movlw HIGH (.5*.60) |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1041 addwfc average_divesecs+1,F ; Add 5*60 seconds |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1042 movlw LOW (.5*.60) |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1043 addwf total_divetime_seconds+0,F |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1044 movlw HIGH (.5*.60) |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1045 addwfc total_divetime_seconds+1,F ; Add 5*60 seconds |
386 | 1046 ; 1. Add 300xdepth to the Sum of depths registers |
1047 SAFE_2BYTE_COPY rel_pressure, xB ; Buffer... | |
1048 movlw LOW (.5*.60) | |
1049 movwf xA+0 | |
1050 movlw HIGH (.5*.60) | |
1051 movwf xA+1 | |
1052 call mult16x16 ;xA*xB=xC | |
1053 | |
1054 movf xC+0,w | |
1055 addwf average_depth_hold+0,F | |
1056 movf xC+1,w | |
1057 addwfc average_depth_hold+1,F | |
1058 movf xC+2,w | |
1059 addwfc average_depth_hold+2,F | |
1060 movf xC+3,w | |
1061 addwfc average_depth_hold+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar | |
1062 | |
1063 ; Do the same for the _total registers (Non-Resettable) | |
1064 movf xC+0,w | |
1065 addwf average_depth_hold_total+0,F | |
1066 movf xC+1,w | |
1067 addwfc average_depth_hold_total+1,F | |
1068 movf xC+2,w | |
1069 addwfc average_depth_hold_total+2,F | |
1070 movf xC+3,w | |
1071 addwfc average_depth_hold_total+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar | |
1072 | |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1073 movlw .5 |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
1074 movwf up ; counter |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1075 ; 1min mode |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1076 divemode_option6_2: |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1077 movlw .1 |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1078 movff WREG,char_I_step_is_1min ; Force 1min mode |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1079 clrf TMR5L |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1080 clrf TMR5H ; 30,51757813µs/bit in TMR5L:TMR5H |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1081 call deco_calc_hauptroutine ; calc_tissue |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1082 movlb .1 |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1083 decfsz up,F ; Done? |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1084 bra divemode_option6_2 ; Not yet |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1085 bsf divemode2 ; continue divetime |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1086 call menuview_toggle_reset |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1087 return |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1088 |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
1089 divemode_option7: |
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
1090 ; Store heading for compass view |
255 | 1091 movff compass_heading_shown+0,compass_bearing+0 |
1092 movff compass_heading_shown+1,compass_bearing+1 | |
1093 bsf compass_bearing_set ; set flag | |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
1094 call menuview_toggle_reset ; Done. |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1095 return |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1096 |
0 | 1097 divemode_simulator_check_limits: |
1098 ; Check limits (150m and 0m) | |
1099 movlw LOW d'16000' ; Compare to 16bar=16000mbar (150m). | |
1100 subwf sim_pressure+0,W | |
1101 movlw HIGH d'16000' | |
1102 subwfb sim_pressure+1,W | |
1103 bnc divemode_simulator_check_limits2 ; No-carry = borrow = not deeper | |
1104 | |
1105 ; Too deep, limit to 150m | |
1106 movlw LOW d'16000' | |
1107 movwf sim_pressure+0 | |
1108 movlw HIGH d'16000' | |
1109 movwf sim_pressure+1 | |
1110 return | |
1111 divemode_simulator_check_limits2: | |
1112 movlw LOW d'1000' ; Compare to 1bar == 0m == 1000 mbar. | |
1113 subwf sim_pressure+0,W | |
1114 movlw HIGH d'1000' | |
1115 subwfb sim_pressure+1,W | |
1116 btfsc STATUS,C ; No-carry = borrow = not deeper. | |
1117 return ; Deeper than 0m == Ok. | |
1118 ; Too shallow, limit to 0m | |
1119 movlw LOW d'1000' | |
1120 movwf sim_pressure+0 | |
1121 movlw HIGH d'1000' | |
1122 movwf sim_pressure+1 | |
1123 return | |
1124 | |
1125 ;============================================================================= | |
1126 ; Compare all enabled gas in list, to see if a better one is available. | |
1127 ; | |
1128 ; Output: better_gas_available, better_gas_number | |
1129 ; | |
1130 check_gas_change: ; Checks if a better gas should be selected (by user) | |
1131 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
1132 clrf better_gas_number ; Clear better gas register | |
1133 | |
1134 SAFE_2BYTE_COPY rel_pressure,xA | |
1135 movlw d'100' | |
1136 movwf xB+0 | |
1137 clrf xB+1 | |
1138 call div16x16 ; compute depth in full m -> result in xC+0 | |
1139 | |
1140 btfss FLAG_ccr_mode ; In CCR mode... | |
1141 bra check_gas_change_OC_bail; No, check for OC or bailout | |
1142 btfsc is_bailout ; Bailout? | |
1143 bra check_gas_change_OC_bail; Yes, check for OC or bailout | |
1144 | |
1145 ; Check Diluents | |
160
99ac325586ce
BUGFIX: Fast diluent (w/o dive mode menu) change did not work correctly
heinrichsweikamp
parents:
152
diff
changeset
|
1146 bsf ccr_diluent_setup ; in CCR menus |
0 | 1147 movlw .0 |
1148 rcall check_dil_common ; With Gas 0-4 in WREG | |
1149 movlw .1 | |
1150 rcall check_dil_common ; With Gas 0-4 in WREG | |
1151 movlw .2 | |
1152 rcall check_dil_common ; With Gas 0-4 in WREG | |
1153 movlw .3 | |
1154 rcall check_dil_common ; With Gas 0-4 in WREG | |
1155 movlw .4 | |
1156 rcall check_dil_common ; With Gas 0-4 in WREG | |
1157 bra check_gas_change_exit | |
1158 | |
1159 check_gas_change_OC_bail: | |
160
99ac325586ce
BUGFIX: Fast diluent (w/o dive mode menu) change did not work correctly
heinrichsweikamp
parents:
152
diff
changeset
|
1160 bcf ccr_diluent_setup ; in OC menus |
0 | 1161 movlw .0 |
1162 rcall check_gas_common ; With Gas 0-4 in WREG | |
1163 movlw .1 | |
1164 rcall check_gas_common ; With Gas 0-4 in WREG | |
1165 movlw .2 | |
1166 rcall check_gas_common ; With Gas 0-4 in WREG | |
1167 movlw .3 | |
1168 rcall check_gas_common ; With Gas 0-4 in WREG | |
1169 movlw .4 | |
1170 rcall check_gas_common ; With Gas 0-4 in WREG | |
1171 ; bra check_gas_change_exit | |
1172 check_gas_change_exit: | |
1173 btfss better_gas_available ; Is a better gas available | |
1174 bcf blinking_better_gas ; No, Clear blinking flag | |
1175 btfss better_gas_available ; Is a better gas available | |
1176 clrf better_gas_number ; No, Clear better_gas_number (For gaslist display) | |
1177 call TFT_active_gas_divemode ; Display gas/Setpoint | |
1178 return | |
1179 | |
1180 check_gas_common: ; With Gas 0-4 in WREG | |
1181 btfsc better_gas_available ; Better Gas already found? | |
1182 return ; Yes, return | |
1183 lfsr FSR1,opt_gas_type ; 0=Disabled, 1=First, 2=Travel, 3=Deco | |
1184 btfss PLUSW1,0 ; Test for Bit0 and 1 -> type=3 -> Deco | |
1185 return ; No | |
1186 btfss PLUSW1,1 ; Test for Bit0 and 1 -> type=3 -> Deco | |
1187 return ; No | |
1188 incf WREG,W ; 1-5 | |
1189 cpfseq active_gas ; is this gas currently selected? | |
1190 bra check_gas_common2 ; No | |
1191 return ; Yes, skip test for active gas | |
1192 check_gas_common2: | |
1193 decf WREG,W ; 0-4 | |
1194 movwf hi ; Save tested gas 0-4 | |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
89
diff
changeset
|
1195 lfsr FSR1,opt_OC_bail_gas_change |
0 | 1196 movff PLUSW1,lo ; Change depth into lo |
1197 movlw minimum_change_depth | |
1198 cpfsgt lo ; Change depth>minimum_change_depth? | |
1199 return ; No, Change depth not deep enough, skip! | |
1200 movf xC+0,W ; load depth in m into WREG | |
1201 cpfsgt lo ; gas_change_depth < current depth? | |
69 | 1202 bra check_gas_common3 ; No, check if we are within the better_gas_window_pos window |
1203 incf hi,W ; 1-5 | |
1204 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available | |
1205 movlw better_gas_window_neg | |
1206 subwf lo,W ; Change depth-better_gas_window_neg | |
1207 cpfslt xC+0 ; current depth<Change depth-better_gas_window_neg? | |
1208 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
1209 return | |
1210 | |
1211 check_gas_common3: | |
0 | 1212 incf hi,W ; 1-5 |
1213 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available | |
69 | 1214 movlw better_gas_window_pos |
1215 addwf lo,W ; Change depth+better_gas_window_pos | |
1216 cpfsgt xC+0 ; current depth>Change depth+better_gas_window_pos? | |
1217 bra check_gas_common4 ; Ok, now check the better gas ppO2<opt_ppO2_max | |
1218 return | |
1219 | |
1220 check_gas_common4: | |
1221 movf hi,W ; 0-4 | |
1222 lfsr FSR1,char_I_deco_N2_ratio | |
1223 movff PLUSW1,lo ; N2 ratio into lo | |
1224 lfsr FSR1,char_I_deco_He_ratio | |
1225 movff PLUSW1,xB+0 ; He ratio into xB+0 | |
1226 movf xB+0,W | |
1227 addwf lo,F | |
1228 movlw .101 | |
1229 bcf STATUS,C | |
1230 subfwb lo,F ; O2 ratio in lo | |
1231 | |
1232 SAFE_2BYTE_COPY amb_pressure, xA | |
1233 movlw d'10' | |
1234 movwf xB+0 | |
1235 clrf xB+1 | |
1236 call div16x16 ; xC=p_amb/10 | |
1237 movff xC+0,xA+0 | |
1238 movff xC+1,xA+1 | |
1239 movff lo,xB+0 ; =O2 ratio | |
1240 clrf xB+1 | |
1241 call mult16x16 ; lo * p_amb/10 | |
1242 | |
1243 ; Check very high ppO2 manually | |
1244 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? | |
1245 return ; Done. | |
1246 ; Check if ppO2>3,30bar | |
1247 btfsc xC+1,7 | |
1248 return ; Done. | |
1249 | |
1250 ; ; Check for low ppo2 | |
1251 ; movff xC+0,sub_b+0 | |
1252 ; movff xC+1,sub_b+1 | |
1253 ; movff opt_ppO2_min,WREG | |
1254 ; mullw d'100' ; opt_ppO2_min*100 | |
1255 ; movff PRODL,sub_a+0 | |
1256 ; movff PRODH,sub_a+1 | |
1257 ; call subU16 | |
1258 ; btfss neg_flag | |
1259 ; return ; Done (Too low). | |
1260 | |
1261 ;check if we are within our warning thresholds! | |
1262 movff xC+0,sub_b+0 | |
1263 movff xC+1,sub_b+1 | |
1264 movff opt_ppO2_max,WREG ; PPO2 Max for MOD calculation and color coding in divemode | |
1265 addlw .1 ; e.g. >1.60 | |
1266 mullw d'100' ; opt_ppO2_max*100 | |
1267 movff PRODL,sub_a+0 | |
1268 movff PRODH,sub_a+1 | |
1269 call subU16 | |
1270 btfss neg_flag | |
0 | 1271 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
69 | 1272 return ; Done. |
0 | 1273 |
1274 check_dil_common: ; With Dil 0-4 in WREG | |
1275 btfsc better_gas_available ; Better Diluent already found? | |
1276 return ; Yes, return | |
1277 lfsr FSR1,opt_dil_type ; 0=Disabled, 1=First, 2=Normal | |
1278 tstfsz PLUSW1 ; =0? | |
1279 bra check_dil_common1 ; No | |
1280 return ; Yes, skip inactive diluents for test | |
1281 check_dil_common1: | |
1282 incf WREG,W ; 1-5 | |
1283 cpfseq active_gas ; is this diluent currently selected? | |
1284 bra check_dil_common2 ; No | |
1285 return ; Yes, skip test for active diluent | |
1286 check_dil_common2: | |
1287 decf WREG,W ; 0-4 | |
1288 movwf hi ; Save tested diluent 0-4 | |
1289 lfsr FSR1,char_I_dil_change | |
1290 movff PLUSW1,lo ; Change depth into lo | |
1291 movlw minimum_change_depth | |
1292 cpfsgt lo ; Change depth>minimum_change_depth? | |
1293 return ; No, Change depth not deep enough, skip! | |
1294 movf xC+0,W ; load depth in m into WREG | |
1295 cpfsgt lo ; gas_change_depth < current depth? | |
1296 return ; No, check next gas | |
1297 incf hi,W ; 1-5 | |
1298 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available | |
69 | 1299 movlw better_gas_window_neg |
1300 subwf lo,W ; Change depth-better_gas_window_neg | |
1301 cpfslt xC+0 ; current depth<Change depth-better_gas_window_neg? | |
0 | 1302 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1303 return | |
1304 | |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1305 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1306 ;============================================================================= |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1307 ; Check for Auto-SP |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1308 ; |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1309 check_dive_autosp: ; Check for Auto-SP |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1310 movff opt_ccr_mode,WREG ; =0: Fixed SP, =1: Sensor, =2: Auto SP |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1311 sublw .2 ; opt_ccr_mode = 2 (Auto SP)? |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1312 bz check_dive_autosp2 ; Yes, check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1313 return ; No, return for Sensor or Fixed mode |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1314 check_dive_autosp2: |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1315 SAFE_2BYTE_COPY rel_pressure,xA |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1316 movlw d'100' |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1317 movwf xB+0 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1318 clrf xB+1 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1319 call div16x16 ; compute depth in full m -> result in xC+0 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1320 ; Check SP2 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1321 btfsc sp2_switched ;=1: This setpoint has been autoselected already |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1322 bra check_dive_autosp3 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1323 movff char_I_setpoint_change+1,lo ; Get depth in m |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1324 tstfsz lo ; =0? |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1325 bra $+4 ; No, continue |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1326 bra check_dive_autosp3 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1327 decf lo,W ; -1 -> WREG |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1328 cpfsgt xC+0 ; Compare with depth |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1329 bra check_dive_autosp3 ; lower depth, do not switch |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1330 ; auto switch to SP2 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1331 movff char_I_setpoint_cbar+1, char_I_const_ppO2 ; Use SetPoint |
352
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1332 rcall xmit_sp_set_flag |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1333 bsf sp2_switched ; Set flag |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1334 check_dive_autosp3: |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1335 ; Check SP3 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1336 btfsc sp3_switched ;=1: This setpoint has been autoselected already |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1337 bra check_dive_autosp4 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1338 movff char_I_setpoint_change+2,lo ; Get depth in m |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1339 tstfsz lo ; =0? |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1340 bra $+4 ; No, continue |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1341 bra check_dive_autosp4 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1342 decf lo,W ; -1 -> WREG |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1343 cpfsgt xC+0 ; Compare with depth |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1344 bra check_dive_autosp4 ; lower depth, do not switch |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1345 ; auto switch to SP3 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1346 movff char_I_setpoint_cbar+2, char_I_const_ppO2 ; Use SetPoint |
352
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1347 rcall xmit_sp_set_flag |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1348 bsf sp3_switched ; Set flag |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1349 check_dive_autosp4: |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1350 ; Check SP4 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1351 btfsc sp4_switched ;=1: This setpoint has been autoselected already |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1352 bra check_dive_autosp5 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1353 movff char_I_setpoint_change+3,lo ; Get depth in m |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1354 tstfsz lo ; =0? |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1355 bra $+4 ; No, continue |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1356 bra check_dive_autosp5 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1357 decf lo,W ; -1 -> WREG |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1358 cpfsgt xC+0 ; Compare with depth |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1359 bra check_dive_autosp5 ; lower depth, do not switch |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1360 ; auto switch to SP4 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1361 movff char_I_setpoint_cbar+3, char_I_const_ppO2 ; Use SetPoint |
352
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1362 rcall xmit_sp_set_flag |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1363 bsf sp4_switched ; Set flag |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1364 check_dive_autosp5: |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1365 ; Check SP5 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1366 btfsc sp5_switched ;=1: This setpoint has been autoselected already |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1367 bra check_dive_autosp6 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1368 movff char_I_setpoint_change+4,lo ; Get depth in m |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1369 tstfsz lo ; =0? |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1370 bra $+4 ; No, continue |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1371 bra check_dive_autosp6 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1372 decf lo,W ; -1 -> WREG |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1373 cpfsgt xC+0 ; Compare with depth |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1374 bra check_dive_autosp6 ; lower depth, do not switch |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1375 ; auto switch to SP5 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1376 movff char_I_setpoint_cbar+4, char_I_const_ppO2 ; Use SetPoint |
352
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1377 rcall xmit_sp_set_flag |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1378 bsf sp5_switched ; Set flag |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1379 check_dive_autosp6: |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1380 return |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1381 |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1382 xmit_sp_set_flag: |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1383 movff char_I_const_ppO2,WREG |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1384 call transmit_setpoint ; Transmit current setpoint from WREG (in cbar) to external electronics |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1385 bsf setpoint_changed ; Set flag (For profile) |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1386 bsf event_occured ; Set global event byte |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1387 return |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1388 |
0 | 1389 ;============================================================================= |
1390 ; Setup everything to enter divemode. | |
1391 ; | |
1392 dive_boot_oc: | |
1393 extern get_first_gas_to_WREG | |
1394 call get_first_gas_to_WREG ; Gets first gas (0-4) into WREG | |
1395 movff WREG,char_I_first_gas ; Copy for compatibility | |
1396 rcall setup_gas_registers ; With WREG=Gas 0-4 | |
197 | 1397 banksel char_I_first_gas |
1398 incf char_I_first_gas,F ; 0-4 -> 1-5 | |
1399 banksel common | |
0 | 1400 return |
1401 | |
1402 dive_boot_cc: | |
277
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
1403 bcf is_bailout ; =1: Bailout |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
1404 bcf setpoint_fallback ; =1: Fallback to SP1 due to external O2 sensor failure |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
1405 bcf blinking_setpoint ; Reset blinking SP flag |
192 | 1406 call compute_ppo2 ; compute mv_sensorX and ppo2_sensorX arrays |
1407 bsf voting_logic_sensor1 | |
1408 bsf voting_logic_sensor2 | |
1409 bsf voting_logic_sensor3 | |
0 | 1410 rcall divemode_setup_sensor_values ; setup sensor values |
192 | 1411 |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1412 ; Setup first SP for Fixed or Auto mode |
0 | 1413 TSTOSS opt_ccr_mode ; =0: Fixed SP, =1: Sensor |
1414 movff char_I_setpoint_cbar+0,char_I_const_ppO2 ; Setup fixed Setpoint (Always start with SP1) | |
352
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1415 movff char_I_const_ppO2,WREG |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1416 call transmit_setpoint ; Transmit current setpoint from WREG (in cbar) to external electronics |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1417 bsf setpoint_changed ; Set flag (For profile) |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1418 bcf sp2_switched ; =1: This setpoint has been autoselected already |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1419 bcf sp3_switched ; =1: This setpoint has been autoselected already |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1420 bcf sp4_switched ; =1: This setpoint has been autoselected already |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1421 bcf sp5_switched ; =1: This setpoint has been autoselected already |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1422 |
0 | 1423 extern get_first_dil_to_WREG |
1424 call get_first_dil_to_WREG ; Gets first gas (0-4) into WREG | |
1425 movff WREG,char_I_first_gas ; Copy for compatibility | |
1426 rcall setup_dil_registers ; With WREG=Gas 0-4 | |
197 | 1427 banksel char_I_first_gas |
1428 incf char_I_first_gas,F ; 0-4 -> 1-5 | |
1429 banksel common | |
385
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1430 call calc_deko_divemode_sensor ; External sensor stuff |
0 | 1431 return |
1432 | |
1433 diveloop_boot: | |
1434 call restart_set_modes_and_flags | |
1435 | |
1436 call I2C_sleep_accelerometer ; Stop accelerometer | |
1437 call I2C_sleep_compass ; Stop compass | |
1438 | |
1439 clrf WREG | |
1440 movff WREG,max_pressure+0 ; clear some variables | |
1441 movff WREG,max_pressure+1 | |
1442 | |
1443 bcf use_agf ; Start with normal GF set | |
1444 bcf divemode_menu ; clear divemode menu flag | |
1445 movlw d'1' | |
1446 movwf apnoe_max_pressure+0 | |
1447 clrf apnoe_max_pressure+1 | |
386 | 1448 ; clrf apnoe_surface_mins |
1449 ; clrf apnoe_surface_secs | |
0 | 1450 clrf apnoe_mins |
1451 clrf divemins+0 | |
1452 clrf divemins+1 | |
389
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
386
diff
changeset
|
1453 |
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
386
diff
changeset
|
1454 ; Copy date and time for logbook |
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
386
diff
changeset
|
1455 movff year,start_year |
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
386
diff
changeset
|
1456 movff month,start_month |
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
386
diff
changeset
|
1457 movff day,start_day |
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
386
diff
changeset
|
1458 movff hours,start_hours |
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
386
diff
changeset
|
1459 movff mins,start_mins |
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
386
diff
changeset
|
1460 |
277
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
1461 bcf no_more_divesecs ; =1: Do no longer show seconds in divemode |
0 | 1462 bcf divemode_menu_active |
1463 clrf menupos | |
277
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
1464 clrf menupos2 ; Reset to zero (Zero=no premenu or simulator task) |
0 | 1465 |
1466 btfss FLAG_ccr_mode | |
1467 rcall dive_boot_oc | |
1468 btfsc FLAG_ccr_mode | |
1469 rcall dive_boot_cc | |
1470 | |
1471 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
1472 clrf better_gas_number ; Clear better gas register | |
1473 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1474 bcf show_safety_stop ;=1: Show the safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1475 clrf safety_stop_countdown ; Clear count-down |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1476 |
0 | 1477 clrf samplesecs |
1478 clrf apnoe_timeout_counter ; timeout in minutes | |
1479 clrf timeout_counter ; takes care of the timeout (Low byte) | |
1480 clrf timeout_counter2 ; takes care of the timeout (High byte) | |
1481 clrf AlarmType ; Clear all alarms | |
1482 bcf event_occured ; clear flag | |
1483 clrf total_divetime_seconds+1 | |
1484 clrf average_depth_hold_total+0 | |
1485 clrf average_depth_hold_total+1 | |
1486 clrf average_depth_hold_total+2 | |
1487 clrf average_depth_hold_total+3 ; Clear Non-Resettable Average | |
1488 rcall reset_average1 ; Reset the resettable average depth | |
1489 bcf decostop_active | |
1490 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
204 | 1491 call ghostwriter_short_header ; Write short header with divenumber into profile memory |
0 | 1492 |
1493 btfsc simulatormode_active | |
1494 bra diveloop_boot_1 | |
1495 ; Normal mode = Surface pressure is the pressure 30mn before dive. | |
1496 SAFE_2BYTE_COPY last_surfpressure_30min, int_I_pres_surface ;copy surfacepressure to deco routine | |
1497 SAFE_2BYTE_COPY last_surfpressure_30min, last_surfpressure ;copy surfacepressure to last_surfpressure for correct depth | |
1498 bra diveloop_boot_2 | |
1499 | |
1500 diveloop_boot_1: | |
1501 ; Simulator mode: Surface pressure is 1bar. | |
1502 movlw LOW .1000 | |
1503 movff WREG,int_I_pres_surface+0 ; LOW copy surfacepressure to deco routine | |
1504 movlw HIGH .1000 | |
1505 movff WREG,int_I_pres_surface+1 ; HIGH copy surfacepressure to deco routine | |
1506 | |
1507 diveloop_boot_2: | |
1508 SAFE_2BYTE_COPY temperature,minimum_temperature ; Reset Min-Temp registers | |
1509 | |
1510 ; Init profile recording parameters | |
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
0
diff
changeset
|
1511 movff samplingrate,samplesecs_value ; to avoid EEPROM access in the ISR |
0 | 1512 movlw div_temperature |
1513 movwf divisor_temperature ; load divisors for profile storage | |
1514 movlw div_deco | |
1515 movwf divisor_deco | |
1516 movlw div_gf | |
1517 movwf divisor_gf | |
1518 movlw div_ppo2_sensors | |
1519 movwf divisor_ppo2_sensors | |
1520 movlw div_decoplan | |
1521 movwf divisor_decoplan | |
1522 movlw div_cns | |
1523 movwf divisor_cns | |
1524 movlw div_tank | |
1525 movwf divisor_tank | |
1526 | |
1527 btfss FLAG_apnoe_mode ; In Apnoe mode? | |
102
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1528 bra divemode_boot1 |
0 | 1529 ; Overwrite some parameters in Apnoe mode.... |
1530 movlw samplingrate_apnoe | |
1531 movwf samplesecs_value ; to avoid EEPROM access in the ISR | |
102
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1532 divemode_boot1: |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1533 btfsc FLAG_ccr_mode ; =1: CCR mode (Fixed ppO2 or Sensor) active |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1534 bra divemode_boot2 |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1535 ; in OC Mode, disable ppO2 logging |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1536 movlw .0 |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1537 movwf divisor_ppo2_sensors |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1538 divemode_boot2: |
0 | 1539 |
1540 bcf LEDg | |
1541 bcf LEDr | |
1542 bcf realdive | |
1543 btfss simulatormode_active ; do not disable in simulator mode! | |
1544 call disable_rs232 ; Disable RS232 | |
1545 btfsc enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump) | |
1546 call enable_rs232 ; Also sets to speed_normal ... | |
39
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
38
diff
changeset
|
1547 ; Reset divetime seconds |
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
38
diff
changeset
|
1548 movlw .2 ; Start at 2seconds |
0 | 1549 movwf total_divetime_seconds+0 |
39
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
38
diff
changeset
|
1550 movwf divesecs |
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
38
diff
changeset
|
1551 movwf apnoe_secs |
0 | 1552 bsf divemode2 ; displayed divetime is running (Divetime starts HERE) |
1553 | |
1554 movff int_O_CNS_fraction+0,CNS_start+0 | |
1555 movff int_O_CNS_fraction+1,CNS_start+1 ; Save CNS value at beginning of dive | |
1556 movff char_O_relative_gradient_GF,GF_start ; Save GF value at beginning of dive | |
1557 return ; Done with divemode boot | |
1558 | |
1559 divemode_check_for_warnings: | |
131 | 1560 movlw .2 |
1561 cpfsgt warning_counter ; only two warnings active? | |
1562 bra divemode_check_for_warnings1 ; Yes, update every second | |
1563 | |
1564 btfss secs,0 ; Every two seconds... | |
1565 return | |
1566 btfss secs,1 ; Every four seconds... | |
0 | 1567 return |
1568 | |
131 | 1569 divemode_check_for_warnings1: |
0 | 1570 movf warning_counter_backup,W |
1571 cpfseq warning_counter ; warning_counter_backup = warning_counter? | |
1572 call TFT_clear_warning_text ; No, clear all warnings | |
1573 movff warning_counter,warning_counter_backup ; copy warning_counter | |
1574 | |
1575 bcf warning_active ; Clear flag | |
1576 clrf warning_counter ; Clear counter | |
1577 | |
1578 ; Warnings for all modes | |
1579 call check_warn_battery ; Check if the battery level should be displayed/warned | |
55 | 1580 call check_divetimeout ; Not actually a warning. Check and show the divemode timeout |
0 | 1581 |
1582 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode | |
1583 bra divemode_check_for_warnings2 | |
1584 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode | |
1585 bra divemode_check_for_warnings2 | |
1586 | |
1587 ; Warnings only in deco modes | |
1588 btfss FLAG_ccr_mode ; Don't check in CCR mode | |
1589 rcall check_ppO2 ; check ppO2 and displays warning, if required | |
1590 btfsc is_bailout ; But check in Bailout case... | |
1591 rcall check_ppO2 ; check ppO2 and displays warning, if required | |
1592 rcall check_cns_violation ; Check CNS value and display it, if required | |
1593 btfsc decostop_active ; In deco mode? | |
1594 rcall check_and_store_gf_violation ; Yes, Sets warnings, if required | |
1595 btfsc decostop_active ; In deco mode? | |
1596 call TFT_ftts ; Show @+x time | |
1597 btfsc use_agf ; In aGF mode? | |
1598 rcall warn_agf ; Yes, show a warning for it | |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
1599 btfsc setpoint_fallback ; =1: Fallback to SP1 due to external O2 sensor failure |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
1600 rcall warn_fallback ; Show the warning |
0 | 1601 |
1602 divemode_check_for_warnings2: | |
1603 ; Display the warning icon? | |
1604 btfsc warning_active ; Any warning active? | |
1605 call TFT_divemode_warning ; Yes | |
1606 btfss warning_active ; Any warning active? | |
1607 call TFT_divemode_warning_clear ; No, clear warning icon | |
1608 | |
1609 ; Setup warning_page number | |
1610 incf warning_page,F | |
1611 bcf STATUS,C | |
1612 rlcf warning_page,W ; *2 | |
1613 cpfsgt warning_counter ; > warning_counter | |
1614 clrf warning_page ; No, clear | |
1615 | |
1616 ; Clear 2nd row of warnings if there is nothing to show (on this page) | |
1617 btfss second_row_warning ; =1: The second row contains a warning | |
1618 call TFT_clear_warning_text_2nd_row ; No, clear this row | |
1619 return ; Done. | |
1620 | |
1621 global check_warn_battery | |
1622 check_warn_battery: | |
1623 movff batt_percent,lo | |
1624 movlw battery_show_level+1 | |
1625 cpfslt lo | |
1626 return ; No Display, no warning | |
1627 ; Display Battery, but warn? | |
1628 incf warning_counter,F ; increase counter | |
1629 call TFT_update_batt_percent_divemode ; Show percent | |
1630 | |
86 | 1631 movff batt_percent,lo |
0 | 1632 movlw color_code_battery_low+1 |
1633 cpfslt lo ; | |
1634 return ; No warning | |
1635 bsf warning_active ; Set Warning flag | |
1636 return | |
1637 | |
55 | 1638 check_divetimeout: |
1639 btfsc divemode2 | |
1640 return ; displayed divetime is not running | |
1641 incf warning_counter,F ; increase counter | |
386 | 1642 goto TFT_divetimeout ; Show timeout counter (and return) |
55 | 1643 |
1644 | |
0 | 1645 check_ppO2: ; check current ppO2 and display warning if required |
1646 SAFE_2BYTE_COPY amb_pressure, xA | |
1647 movlw d'10' | |
1648 movwf xB+0 | |
1649 clrf xB+1 | |
1650 call div16x16 ; xC=p_amb/10 | |
1651 | |
1652 movff xC+0,xA+0 | |
1653 movff xC+1,xA+1 | |
1654 movff char_I_O2_ratio,xB+0 ; =O2 ratio | |
1655 clrf xB+1 | |
1656 call mult16x16 ; char_I_O2_ratio * p_amb/10 | |
1657 | |
1658 ; Check very high ppO2 manually | |
1659 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? | |
1660 bra check_ppO2_1 ; Yes, display Value! | |
1661 ; Check if ppO2>3,30bar | |
1662 btfsc xC+1,7 | |
1663 bra check_ppO2_1 ; Yes! | |
1664 | |
1665 ; Check for low ppo2 | |
1666 movff xC+0,sub_b+0 | |
1667 movff xC+1,sub_b+1 | |
1668 movff opt_ppO2_min,WREG | |
1669 mullw d'100' ; opt_ppO2_min*100 | |
1670 movff PRODL,sub_a+0 | |
1671 movff PRODH,sub_a+1 | |
1672 call subU16 | |
1673 btfsc neg_flag | |
1674 bra check_ppO2_0 ; Not too low | |
1675 ; ppO2 low | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1676 rcall check_ppo2_display ; display if not already shown in custom view |
0 | 1677 movlw d'4' ; Type of Alarm (ppO2 low) |
1678 movwf AlarmType ; Copy to Alarm Register | |
1679 bsf event_occured ; Set Event Flag | |
1680 bsf warning_active ; Set Warning flag | |
1681 return ; Done. | |
1682 | |
1683 check_ppO2_0: | |
1684 ; Check if ppO2 should be displayed | |
335
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
318
diff
changeset
|
1685 movlw .0 |
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
318
diff
changeset
|
1686 TSTOSS opt_showppo2 ; 0=no, 1=always show |
0 | 1687 movlw ppo2_display_high |
1688 mullw d'100' ; ppo2_display_high*100 | |
1689 movff PRODL,sub_a+0 | |
1690 movff PRODH,sub_a+1 | |
1691 call subU16 | |
1692 btfss neg_flag | |
1693 return ; No Display, no warning | |
1694 ; Display ppO2, but warn? | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1695 rcall check_ppo2_display ; display if not already shown in custom view |
0 | 1696 |
1697 ;check if we are within our warning thresholds! | |
1698 movff xC+0,sub_b+0 | |
1699 movff xC+1,sub_b+1 | |
1700 movff opt_ppO2_max,WREG ; PPO2 Max for MOD calculation and color coding in divemode | |
69 | 1701 addlw .1 ; e.g. >1.60 |
0 | 1702 mullw d'100' ; opt_ppO2_max*100 |
1703 movff PRODL,sub_a+0 | |
1704 movff PRODH,sub_a+1 | |
1705 call subU16 | |
1706 btfss neg_flag | |
1707 return ; Done. Not too high | |
1708 movlw d'5' ; Type of Alarm (ppO2 high) | |
1709 movwf AlarmType ; Copy to Alarm Register | |
1710 bsf event_occured ; Set Event Flag | |
1711 bsf warning_active ; Set Warning flag | |
1712 return ; Done. | |
1713 | |
1714 check_ppO2_1: ; ppO2 very high | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1715 rcall check_ppo2_display ; display if not already shown in custom view |
0 | 1716 movlw d'5' ; Type of Alarm |
1717 movwf AlarmType ; Copy to Alarm Register | |
1718 bsf event_occured ; Set Event Flag | |
1719 bsf warning_active ; Set Warning flag | |
1720 return ; Done. | |
1721 | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1722 check_ppo2_display: |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1723 movlw .9 |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1724 cpfseq menupos3 ; ppO2 shown in Custom View? |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1725 bra check_ppO2_a ; No |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1726 return ; Yes, do not show twice (in custom view and in warning area) |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1727 check_ppO2_a: |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1728 incf warning_counter,F ; increase counter |
386 | 1729 goto TFT_display_ppo2 ; Show ppO2 (and return) |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1730 |
0 | 1731 global check_cns_violation |
1732 check_cns_violation: | |
1733 ; Check if CNS should be displayed | |
1734 movff int_O_CNS_fraction+1,lo ; copy into bank1 | |
1735 tstfsz lo ; >255% ? | |
1736 bra check_cns_violation2 ; Yes | |
1737 movff int_O_CNS_fraction+0,lo ; copy into bank1 | |
1738 | |
1739 movlw cns_warning_high ; cns_warning_high | |
1740 subwf lo,W | |
1741 btfsc STATUS,C | |
1742 bsf warning_active ; Set Warning flag | |
1743 | |
1744 movlw cns_display_high ; cns_display_high | |
1745 subwf lo,W | |
1746 btfss STATUS,C | |
1747 return ; No Display, no warning | |
1748 ; Display CNS | |
1749 incf warning_counter,F ; increase counter | |
386 | 1750 goto TFT_display_cns ; Show CNS (and return) |
0 | 1751 |
1752 check_cns_violation2: | |
1753 incf warning_counter,F ; increase counter | |
386 | 1754 bsf warning_active ; Set Warning flag |
1755 goto TFT_display_cns ; Show CNS (and return) | |
0 | 1756 |
1757 global check_and_store_gf_violation | |
1758 check_and_store_gf_violation: | |
1759 movff char_O_gradient_factor,lo ; gradient factor absolute (Non-GF model) | |
1760 movff char_I_deco_model,hi | |
1761 decfsz hi,F ; jump over next line if char_I_deco_model == 1 | |
1762 movff char_O_relative_gradient_GF,lo ; gradient factor relative (GF model) | |
1763 | |
1764 movlw gf_warning_high | |
1765 cpfsgt lo | |
1766 bra check_and_store_gf_violation2 ; No warning | |
1767 movlw d'2' ; Type of Alarm | |
1768 movwf AlarmType ; Copy to Alarm Register | |
1769 bsf event_occured ; Set Event Flag | |
1770 bsf warning_active ; Set Warning flag | |
1771 check_and_store_gf_violation2: | |
1772 movlw gf_display_high | |
1773 cpfsgt lo | |
1774 return ; No Display, no warning | |
1775 ; Display GF | |
1776 incf warning_counter,F ; increase counter | |
386 | 1777 goto TFT_warning_gf ; Show GF Warning (and return) |
0 | 1778 |
1779 warn_agf: | |
1780 incf warning_counter,F ; increase counter | |
386 | 1781 goto TFT_warning_agf ; Show aGF warning (and return) |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
1782 |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
1783 warn_fallback: |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
1784 incf warning_counter,F ; increase counter |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
1785 bsf warning_active ; Set Warning flag |
386 | 1786 goto TFT_warning_fallback ; Show fallback warning (and return) |
0 | 1787 |
1788 | |
1789 END |