Mercurial > public > hwos_code
annotate src/divemode.asm @ 426:8f8151bb53bb
docu update
author | heinrichsweikamp |
---|---|
date | Fri, 10 Jun 2016 10:01:42 +0200 |
parents | 6e60012bb3fc |
children | eccae727702f |
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 | |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
455 btfsc display_velocity |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
456 bra calc_velocity1 ; Always update if already displayed |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
457 btfss divemode2 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
458 return ; display velocity only if deepter then 1m (Not at the surface after the dive) |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
459 calc_velocity1: |
0 | 460 SAFE_2BYTE_COPY amb_pressure, sub_a |
461 movff last_pressure_velocity+0,sub_b+0 | |
462 movff last_pressure_velocity+1,sub_b+1 | |
463 movff sub_a+0,last_pressure_velocity+0 ; store old value for velocity | |
464 movff sub_a+1,last_pressure_velocity+1 | |
465 | |
466 call subU16 ; sub_c = amb_pressure - last_pressure | |
467 | |
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
|
468 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
|
469 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
|
470 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
|
471 |
0 | 472 movff sub_c+0,xA+0 |
473 movff sub_c+1,xA+1 | |
474 movlw d'39' ; 77 when called every second.... | |
475 movwf xB+0 | |
476 clrf xB+1 | |
477 call mult16x16 ; differential pressure in mbar*77... | |
478 movff xC+0,divA+0 | |
479 movff xC+1,divA+1 | |
480 movlw d'7' | |
481 movwf divB+0 | |
482 call div16 ; devided by 2^7 equals velocity in m/min | |
483 | |
484 movlw d'99' | |
485 cpfsgt divA+0 ; limit to 99m/min | |
486 bra calc_velocity3 | |
487 movwf divA+0 ; divA=99 | |
488 | |
489 calc_velocity3: | |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
490 ; Copy old speeds |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
491 movff old_velocity+2,old_velocity+3 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
492 movff old_velocity+1,old_velocity+2 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
493 movff old_velocity+0,old_velocity+1 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
494 movff divA+0,old_velocity+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
495 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
496 ; movff old_velocity+3,WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
497 ; addwf divA+0,F ; add old speed |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
498 ; bcf STATUS,C |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
499 ; rrcf divA+0,F ; /2 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
500 ; movff old_velocity+2,WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
501 ; addwf divA+0,F ; add old speed |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
502 ; bcf STATUS,C |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
503 ; rrcf divA+0,F ; /2 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
504 ; movff old_velocity+1,WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
505 ; addwf divA+0,F ; add old speed |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
506 ; bcf STATUS,C |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
507 ; rrcf divA+0,F ; /2 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
508 ; movff old_velocity+0,WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
509 ; addwf divA+0,F ; add old speed |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
510 ; bcf STATUS,C |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
511 ; rrcf divA+0,F ; /2 |
0 | 512 call TFT_display_velocity ; With divA+0 = m/min... |
513 return | |
514 | |
515 | |
516 ;============================================================================= | |
517 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
518 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
|
519 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
|
520 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
|
521 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
522 btfsc decostop_active ; Is a deco stop displayed? |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
523 bra delete_safety_stop ; Yes, don't show safety stop |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
524 ; Below "opt_safety_stop_reset"? Set flag and reset count-down timer |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
525 SAFE_2BYTE_COPY rel_pressure, lo |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
526 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
|
527 movff lo,sub_a+0 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
528 movff hi,sub_a+1 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
529 movff opt_safety_stop_reset,WREG ; [cbar] |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
530 mullw .10 ; mbar in PRODL:H |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
531 movff PRODL,sub_b+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
532 movff PRODH,sub_b+1 |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
533 call subU16 ; sub_c = sub_a - sub_b |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
534 btfss neg_flag |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
535 bra reset_safety_stop ; Below 10m, reset safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
536 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
537 ; Above "opt_safety_stop_end"? Clear flag. |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
538 SAFE_2BYTE_COPY rel_pressure, lo |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
539 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
|
540 movff lo,sub_a+0 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
541 movff hi,sub_a+1 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
542 movff opt_safety_stop_end,WREG ; [cbar] |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
543 mullw .10 ; mbar in PRODL:H |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
544 movff PRODL,sub_b+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
545 movff PRODH,sub_b+1 |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
546 call subU16 ; sub_c = sub_a - sub_b |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
547 btfsc neg_flag |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
548 bra delete_safety_stop ; Above 3m, remove safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
549 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
550 ; Above "opt_safety_stop_start"? Activate safety stop |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
551 SAFE_2BYTE_COPY rel_pressure, lo |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
552 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
|
553 movff lo,sub_a+0 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
554 movff hi,sub_a+1 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
555 movff opt_safety_stop_start,WREG ; [cbar] |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
556 mullw .10 ; mbar in PRODL:H |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
557 movff PRODL,sub_b+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
558 movff PRODH,sub_b+1 |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
559 call subU16 ; sub_c = sub_a - sub_b |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
560 btfsc neg_flag |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
561 bra acivate_safety_stop ; Above 5m, activate safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
562 bra reset_safety_stop2 ; Pause safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
563 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
564 acivate_safety_stop: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
565 tstfsz safety_stop_countdown ; Countdown at zero? |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
566 bsf show_safety_stop ; No, Set flag! |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
567 return |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
568 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
569 delete_safety_stop: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
570 clrf safety_stop_countdown ; reset timer |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
571 bra reset_safety_stop2 ; Remove safety stop from display |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
572 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
573 reset_safety_stop: |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
574 movff opt_safety_stop_length,safety_stop_countdown ; reset timer |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
575 reset_safety_stop2: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
576 bcf show_safety_stop ; Clear flag |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
577 btfss safety_stop_active ; Safety stop shown |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
578 return ; No, don't delete it |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
579 bcf safety_stop_active ; Clear flag |
131 | 580 call TFT_clear_safety_stop ; Clear safety stop |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
581 return |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
582 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
583 ;============================================================================= |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
584 |
0 | 585 timeout_menuview: |
586 decfsz timeout_counter3,F ; timeout for menuview | |
587 return ; No timeout, return | |
588 ; Timeout, clear e.g. "Menu?" | |
589 goto menuview_toggle_reset ; "returns" | |
590 | |
591 timeout_divemode_menu: | |
592 decfsz timeout_counter3,F ; timeout for divemode menu | |
593 return | |
594 | |
595 global timeout_divemode_menu2 | |
596 timeout_divemode_menu2: ; Called from divemenu_tree.asm | |
597 bcf divemode_menu ; Timeout! Clear flag | |
598 call TFT_clear_divemode_menu ; Clear menu | |
599 call TFT_active_gas_divemode ; Redraw gas/setpoint/diluent | |
600 bcf blinking_better_gas ; Clear flag to have temperature updated once | |
601 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
|
602 call TFT_draw_gassep_line ; Gas separator grid in spec mode only |
0 | 603 |
604 btfss decostop_active ; In deco mode ? | |
605 bra timeout_divemode_menu_ndl ; No, show NDL again | |
606 ; Show deco | |
607 call TFT_display_deko_mask ; clear nostop time, display decodata | |
608 call TFT_display_deko | |
609 call TFT_show_TTS_divemode | |
610 return | |
611 timeout_divemode_menu_ndl: ; Show NDL | |
612 call TFT_display_ndl_mask ; Clear deco data, display nostop time | |
613 call TFT_display_ndl | |
614 return | |
615 | |
616 timeout_divemode: | |
617 btfsc divemode_menu ; Divemode menu active? | |
618 rcall timeout_divemode_menu ; Yes, check the timeout for it... | |
619 | |
620 btfsc menuview ; is a menuview shown? | |
621 rcall timeout_menuview ; Yes, check the timeout for it... | |
622 | |
623 btfss realdive ; Dive longer then one minute | |
624 return | |
625 | |
626 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
|
627 bra timeout_divemode2 ; Yes, use apnoe_timeout [min] for timeout |
0 | 628 |
629 ifndef __DEBUG | |
630 btfsc simulatormode_active ; In Simulator mode? | |
631 bra timeout_divemode3 ; Yes, use simulator timeout | |
632 endif | |
633 | |
634 bcf divemode | |
148 | 635 infsnz timeout_counter,F |
636 incf timeout_counter2,F ; timeout is 15bits | |
0 | 637 |
638 movlw LOW divemode_timeout | |
639 movwf sub_a+0 | |
640 movlw HIGH divemode_timeout | |
641 movwf sub_a+1 | |
642 | |
643 movff timeout_counter, sub_b+0 | |
644 movff timeout_counter2, sub_b+1 | |
645 call subU16 ; sub_c = sub_a - sub_b | |
646 btfss neg_flag ; Result negative? | |
647 bsf divemode ; No, set flag | |
648 return | |
649 | |
650 timeout_divemode2: | |
651 incf timeout_counter,F ; seconds... | |
652 movlw d'60' | |
653 cpfseq timeout_counter ; timeout_counter=60? | |
654 return ; No. | |
655 ; One minute timeout done. | |
656 clrf timeout_counter | |
657 bcf divemode | |
658 incf apnoe_timeout_counter,F | |
659 movlw apnoe_timeout ; apnoe timeout [min] | |
660 cpfseq apnoe_timeout_counter | |
661 bsf divemode | |
662 return | |
663 | |
664 timeout_divemode3: | |
665 bcf divemode | |
666 incf timeout_counter,F | |
667 movlw simulator_timeout ; simulator timeout | |
668 cpfsgt timeout_counter | |
669 bsf divemode | |
670 return | |
671 | |
672 update_temp_and_or_depth: ; New sensor data arrived... | |
673 btfsc temp_changed | |
674 call TFT_temp_divemode ; Displays temperature | |
675 | |
676 btfsc pressure_refresh | |
677 call TFT_depth ; Displays new depth | |
678 | |
679 rcall set_max_depth ; update max. depth if required | |
680 bcf pressure_refresh ; until new pressure is available | |
681 return | |
682 | |
683 update_divemode60: ; update any minute | |
684 call get_battery_voltage ; gets battery voltage | |
218 | 685 rcall set_powersafe ; Battery low? |
0 | 686 call TFT_max_pressure ; Update max. depth |
687 call customview_minute ; Do every-minute tasks for the custom view area | |
688 bcf oneminupdate | |
689 | |
690 btfss simulatormode_active ; in simulator mode? | |
691 return ; No | |
692 ; Yes, quite dive mode simulation after 21*256s=89min:36s | |
693 movlw .20 | |
694 cpfsgt total_divetime_seconds+1 ; Timeout? | |
695 return ; No | |
696 ifdef __DEBUG | |
697 return ; No simulator timeout in debug mode | |
698 endif | |
699 bra divemode_option1 ; Yes, set to 0m and "return" | |
700 | |
701 set_max_depth: | |
702 movff max_pressure+0,sub_a+0 | |
703 movff max_pressure+1,sub_a+1 | |
704 SAFE_2BYTE_COPY rel_pressure, sub_b | |
705 call subU16 ; sub_c = sub_a - sub_b | |
706 ; max_pressure<rel_pressure -> neg_flag=1 | |
707 ; rel_pressure<=max_pressure -> neg_flag=0 | |
708 btfss neg_flag | |
709 return | |
710 ; max_pressure<rel_pressure | |
711 movff sub_b+0,max_pressure+0 | |
712 movff sub_b+1,max_pressure+1 | |
713 call TFT_max_pressure ; No, use normal max. depth | |
714 return | |
715 | |
716 set_min_temp: | |
717 movff minimum_temperature+0,sub_a+0 | |
718 movff minimum_temperature+1,sub_a+1 | |
719 SAFE_2BYTE_COPY temperature,sub_b | |
720 call sub16 ; sub_c = sub_a - sub_b | |
721 ; minimum_temperature<T -> neg_flag=1 | |
722 ; T<=minimum_temperature -> neg_flag=0 | |
723 btfsc neg_flag | |
724 return | |
725 ; minimum_temperature>=T | |
726 movff sub_b+0,minimum_temperature+0 | |
727 movff sub_b+1,minimum_temperature+1 | |
728 return | |
729 | |
730 global set_dive_modes | |
731 set_dive_modes: | |
732 btfsc high_altitude_mode ; In high altitude (Fly) mode? | |
733 bra set_dive_modes3 ; Yes! | |
734 | |
735 set_dive_modes0: | |
736 movlw LOW start_dive_threshold | |
737 movwf sub_a+0 ; dive_treshold is in cm | |
738 movlw HIGH start_dive_threshold | |
739 movwf sub_a+1 ; dive_treshold is in cm | |
740 | |
741 set_dive_modes1: | |
742 SAFE_2BYTE_COPY rel_pressure, sub_b | |
743 call subU16 ; sub_c = sub_a - sub_b | |
744 | |
745 btfss neg_flag | |
746 bra set_dive_modes2 ; too shallow (rel_pressure<dive_threshold) | |
747 | |
748 btfsc realdive ; Dive longer than one minute? | |
749 clrf timeout_counter ; Yes, reset timout counter | |
750 | |
751 bsf divemode ; (Re-)Set divemode flag | |
752 bsf divemode2 ; displayed divetime is running | |
753 return | |
754 | |
755 set_dive_modes2: | |
756 bcf divemode2 ; Stop time | |
757 btfss realdive ; dive longer then one minute? | |
758 bcf divemode ; no -> this was no real dive | |
759 return ; No, return | |
760 | |
761 | |
762 set_dive_modes3: ; High-altitude mode | |
763 btfsc realdive ; dive longer then one minute? | |
764 bra set_dive_modes0 ; Yes -> this is a real dive -> Use start_dive_threshold or ascend | |
765 | |
766 movlw HIGH high_altitude_dive_threshold | |
767 movwf sub_a+1 | |
768 movlw LOW high_altitude_dive_threshold | |
769 movwf sub_a+0 | |
770 bra set_dive_modes1 | |
771 | |
772 set_powersafe: | |
773 movlw color_code_battery_low+1; [%] | |
774 cpfslt batt_percent | |
775 return | |
776 | |
777 movlw d'7' ; Type of Alarm (Battery Low) | |
778 movwf AlarmType ; Copy to Alarm Register | |
779 bsf event_occured ; Set Event Flag | |
780 movlw .0 | |
781 movff WREG,opt_brightness ; Set Brightness to ECO | |
782 return ; return | |
783 | |
784 calc_average_depth: | |
176 | 785 btfsc reset_average_depth ; Reset the Average depth? |
0 | 786 rcall reset_average1 ; Reset the resettable average depth |
787 | |
788 ; 1. Add new 2xdepth to the Sum of depths registers | |
789 SAFE_2BYTE_COPY rel_pressure, xB ; Buffer... | |
790 bcf STATUS,C | |
791 rlcf xB+0,F | |
792 rlcf xB+1,F ; x2 | |
793 | |
794 movf xB+0,w | |
795 addwf average_depth_hold+0,F | |
796 movf xB+1,w | |
797 addwfc average_depth_hold+1,F | |
798 movlw d'0' | |
799 addwfc average_depth_hold+2,F | |
800 addwfc average_depth_hold+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar | |
801 | |
802 ; Do the same for the _total registers (Non-Resettable) | |
803 movf xB+0,w | |
804 addwf average_depth_hold_total+0,F | |
805 movf xB+1,w | |
806 addwfc average_depth_hold_total+1,F | |
807 movlw d'0' | |
808 addwfc average_depth_hold_total+2,F | |
809 addwfc average_depth_hold_total+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar | |
810 | |
811 ; 2. Compute Average Depth on base of average_divesecs:2 | |
812 movff average_divesecs+0,xB+0 | |
813 movff average_divesecs+1,xB+1 ; Copy | |
814 movff average_depth_hold+0,xC+0 | |
815 movff average_depth_hold+1,xC+1 | |
816 movff average_depth_hold+2,xC+2 | |
817 movff average_depth_hold+3,xC+3 | |
818 | |
819 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
820 movff xC+0,avr_rel_pressure+0 | |
821 movff xC+1,avr_rel_pressure+1 | |
822 | |
89
c34516c99ca8
BUGFIX: No average depth for end-of-dive portion (<1m)
heinrichsweikamp
parents:
86
diff
changeset
|
823 btfss divemode2 ; displayed divetime is running? |
c34516c99ca8
BUGFIX: No average depth for end-of-dive portion (<1m)
heinrichsweikamp
parents:
86
diff
changeset
|
824 return ; No (e.g. too shallow) |
c34516c99ca8
BUGFIX: No average depth for end-of-dive portion (<1m)
heinrichsweikamp
parents:
86
diff
changeset
|
825 |
0 | 826 ; 3. Compute Total Average Depth on base of total_divetime_seconds:2 |
827 movff total_divetime_seconds+0,xB+0 | |
828 movff total_divetime_seconds+1,xB+1 ; Copy | |
829 movff average_depth_hold_total+0,xC+0 | |
830 movff average_depth_hold_total+1,xC+1 | |
831 movff average_depth_hold_total+2,xC+2 | |
832 movff average_depth_hold_total+3,xC+3 | |
833 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
834 movff xC+0,avr_rel_pressure_total+0 | |
835 movff xC+1,avr_rel_pressure_total+1 | |
836 return | |
837 | |
838 reset_average1: | |
839 clrf average_depth_hold+0 | |
840 clrf average_depth_hold+1 | |
841 clrf average_depth_hold+2 | |
842 clrf average_depth_hold+3 ; Clear average depth register | |
843 movlw d'2' | |
844 movwf average_divesecs+0 | |
845 clrf average_divesecs+1 | |
846 bcf reset_average_depth ; Clear flag | |
847 return | |
848 | |
849 test_switches_divemode: ; checks switches in divemode | |
850 btfsc divemode_menu ; Divemode menu shown? | |
851 bra test_switches_divemode_menu ; Yes, use menu processor | |
852 btfsc switch_left | |
853 bra test_switches_divemode2 ; Enter button pressed, check if we need to do something | |
854 btfss switch_right | |
855 return ; No button press | |
856 tstfsz menupos2 ; any option shown? | |
857 bra test_switches_divemode1 ; Yes, do option tasks | |
858 bsf toggle_customview ; No, toggle custom view | |
859 return | |
860 | |
861 test_switches_divemode_menu: | |
862 btfsc switch_left | |
863 bra test_switches_divemode_menu2 ; Move cursor | |
864 btfsc switch_right | |
865 bra test_switches_divemode_menu3 ; Enter submenu or do something | |
866 return ; No button press | |
867 | |
868 test_switches_divemode_menu1: | |
869 clrf menupos | |
870 test_switches_divemode_menu2: | |
871 incf menupos,F | |
872 incf menupos4,W ; menupos4+1 -> WREG | |
873 cpfslt menupos ; >menupos4 (Set in menu_processor.asm)? | |
874 bra test_switches_divemode_menu1; > Yes, set to 1 | |
875 call TFT_divemode_menu_cursor ; Update the cursor | |
876 bcf switch_left | |
877 movlw divemode_menu_timeout ; Reload timeout | |
878 movwf timeout_counter3 ; timeout for divemode menu | |
879 return | |
880 | |
881 test_switches_divemode_menu3: ; Enter submenu or do something | |
882 bcf switch_right | |
883 ; decf menupos,F ; menu_processor needs 0-5... | |
884 extern do_line_menu | |
885 goto do_line_menu ; Warning! Trashes STKPTR and returns to diveloop_loop4: | |
886 | |
887 test_switches_divemode1: | |
888 bcf switch_right | |
889 movlw divemode_menuview_timeout | |
890 movwf timeout_counter3 ; Reload timeout | |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
891 movff menupos2,WREG ; menupos2 holds number of customview/divemode menu function |
0 | 892 dcfsnz WREG,F |
137 | 893 bra divemode_option_gaschange ; Switch to the indicated "better gas" |
894 dcfsnz WREG,F | |
0 | 895 bra divemode_option0 ; Start/Setup Divemode menu |
896 dcfsnz WREG,F | |
897 bra divemode_option1 ; Quit Simulation? | |
898 dcfsnz WREG,F | |
899 bra divemode_option2 ; Descent 1m | |
900 dcfsnz WREG,F | |
901 bra divemode_option3 ; Ascend 1m | |
902 dcfsnz WREG,F | |
903 bra divemode_option4 ; Quit Apnoe mode | |
904 dcfsnz WREG,F | |
905 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
|
906 dcfsnz WREG,F |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
907 bra divemode_option6 ; +5mins simulation |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
908 dcfsnz WREG,F |
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
909 bra divemode_option7 ; Store heading |
0 | 910 return |
911 | |
912 test_switches_divemode2: | |
913 call menuview_toggle ; Menu or Simulator tasks | |
914 return | |
915 | |
916 gas_switched_common: | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
917 bcf divemode_gaschange ; Clear flag |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
918 |
274
9347893b74ce
BUGFIX: Fast Gas change near the ppO2 limit could cause switching to a non-available Gas #0
heinrichsweikamp
parents:
256
diff
changeset
|
919 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
|
920 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
|
921 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
|
922 |
0 | 923 decf menupos,W ; 1-5 -> 0-4 |
924 btfss FLAG_ccr_mode ; Choose OC Gases | |
925 rcall setup_gas_registers ; With WREG=Gas 0-4 | |
926 btfsc FLAG_ccr_mode ; Choose CC Diluents | |
927 rcall setup_dil_registers ; With WREG=Gas 0-4 | |
928 | |
929 decf menupos,W ; 1-5 -> 0-4 | |
930 btfsc is_bailout ; Choose OC Bailouts (OC Gases) | |
931 rcall setup_gas_registers ; With WREG=Gas 0-4 | |
932 | |
933 call TFT_active_gas_divemode ; Display gas/Setpoint | |
934 clrf WREG | |
935 movff WREG,char_O_deco_status ; Restart decoplan computation | |
98 | 936 |
937 ; Set flags for profile recording | |
938 bsf event_occured ; Set global event byte | |
939 btfsc is_bailout ; Choose OC Bailouts (OC Gases) | |
940 bsf bailoutgas_event ; Bailout gas change | |
941 btfss is_bailout ; Choose OC Bailouts (OC Gases) | |
942 bsf stored_gas_changed ; OC gas change | |
0 | 943 return |
944 | |
945 global setup_gas_registers | |
946 setup_gas_registers: ; With WREG=Gas 0-4 | |
947 lfsr FSR1,opt_gas_O2_ratio+0 | |
948 movff PLUSW1,char_I_O2_ratio ; O2 (For ppO2 calculations) | |
949 lfsr FSR1,opt_gas_He_ratio+0 | |
950 movff PLUSW1,char_I_He_ratio ; He | |
951 incf WREG,W ; Gas# 1-5 | |
952 movff WREG,char_I_current_gas ; Set gas | |
953 movff WREG,active_gas ; Set for logbook and display | |
954 banksel char_I_O2_ratio | |
955 movf char_I_O2_ratio,W ; Add O2... | |
956 addwf char_I_He_ratio,W ; ...and He... | |
957 sublw .100 ; ...subtract both from 100 | |
958 movwf char_I_N2_ratio ; -> N2! | |
959 banksel common | |
960 return | |
961 | |
962 global setup_dil_registers | |
963 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
|
964 btfsc is_bailout |
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
89
diff
changeset
|
965 return ; Ignore in bailout |
0 | 966 lfsr FSR1,opt_dil_O2_ratio+0 |
967 movff PLUSW1,char_I_O2_ratio ; O2 (For ppO2 calculations) | |
968 lfsr FSR1,opt_dil_He_ratio+0 | |
969 movff PLUSW1,char_I_He_ratio ; He | |
970 incf WREG,W ; Gas# 1-5 | |
971 movff WREG,char_I_current_gas ; Set gas | |
972 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
|
973 movff WREG,active_diluent ; As a backup when switching back from Bailout to CCR |
0 | 974 banksel char_I_O2_ratio |
975 movf char_I_O2_ratio,W ; Add O2... | |
976 addwf char_I_He_ratio,W ; ...and He... | |
977 sublw .100 ; ...subtract both from 100 | |
978 movwf char_I_N2_ratio ; -> N2! | |
979 banksel common | |
980 return | |
981 | |
137 | 982 divemode_option_gaschange: ; Switch to the better gas |
983 movff better_gas_number,menupos; 1-5 | |
984 bsf divemode_gaschange ; Change the gas in the dive mode loop... | |
985 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
|
986 bcf better_gas_available ; Clear flag immediately |
137 | 987 return |
988 | |
0 | 989 divemode_option0: ; Start/Setup Divemode menu |
990 call TFT_clear_divemode_menu ; Clear menu area | |
991 bcf menuview | |
992 extern do_main_divemenu | |
993 call do_main_divemenu | |
994 global divemode_option0_return | |
995 divemode_option0_return: | |
996 ; movlw .1 | |
997 ; movwf menupos ; Set to first option in divemode menu | |
998 call TFT_divemode_menu_cursor; Show the cursor | |
999 movlw divemode_menu_timeout | |
1000 movwf timeout_counter3 ; timeout for divemode menu | |
1001 bsf divemode_menu ; Set flag | |
1002 clrf menupos2 ; Clear option counter | |
1003 bra diveloop_loop4 ; Goto back to diveloop (Menuprocessor trashes STKPTR!) | |
1004 | |
1005 divemode_option4: | |
1006 movlw d'58' ; two seconds left | |
1007 movwf timeout_counter | |
1008 movlw apnoe_timeout-1 ; apnoe timeout [min] | |
1009 movwf apnoe_timeout_counter | |
1010 btfss simulatormode_active ; in simulator mode? | |
1011 return ; No | |
1012 divemode_option1: ; Quit simulation mode | |
1013 banksel isr_backup | |
1014 movlw low .1000 | |
1015 movwf sim_pressure+0 | |
1016 movlw high .1000 | |
1017 movwf sim_pressure+1 ; Set to 0m -> End of Dive | |
1018 banksel common | |
1019 call menuview_toggle_reset ; Reset to zero (Zero=no menuview) | |
1020 | |
1021 btfss FLAG_apnoe_mode ; In Apnoe mode? | |
1022 return ; No | |
1023 movlw d'58' ; two seconds left | |
1024 movwf timeout_counter | |
1025 movlw apnoe_timeout-1 ; apnoe timeout [min] | |
1026 movwf apnoe_timeout_counter | |
1027 return | |
1028 | |
1029 divemode_option3: ; minus 1m | |
1030 banksel isr_backup | |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
1031 movlw d'100' |
0 | 1032 subwf sim_pressure+0 |
1033 movlw .0 | |
1034 subwfb sim_pressure+1 | |
1035 rcall divemode_simulator_check_limits | |
1036 banksel common | |
1037 return | |
1038 | |
1039 divemode_option2: ; plus 1m | |
1040 banksel isr_backup | |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
1041 movlw d'100' |
0 | 1042 addwf sim_pressure+0 |
1043 movlw .0 | |
1044 addwfc sim_pressure+1 | |
1045 rcall divemode_simulator_check_limits | |
1046 banksel common | |
1047 return | |
1048 | |
1049 divemode_option5: | |
1050 call menuview_toggle_reset ; Reset to zero (Zero=no menuview) | |
1051 bsf reset_average_depth ; Set Flag | |
1052 return | |
1053 | |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1054 divemode_option6: |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1055 bcf divemode2 ; Stop divetime |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1056 movlw .5 |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1057 addwf divemins+0,F |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1058 movlw .0 |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
1059 addwfc divemins+1,F ; Add 5 mins |
385
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1060 movlw LOW (.5*.60) |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1061 addwf average_divesecs+0,F |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1062 movlw HIGH (.5*.60) |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1063 addwfc average_divesecs+1,F ; Add 5*60 seconds |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1064 movlw LOW (.5*.60) |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1065 addwf total_divetime_seconds+0,F |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1066 movlw HIGH (.5*.60) |
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1067 addwfc total_divetime_seconds+1,F ; Add 5*60 seconds |
386 | 1068 ; 1. Add 300xdepth to the Sum of depths registers |
1069 SAFE_2BYTE_COPY rel_pressure, xB ; Buffer... | |
1070 movlw LOW (.5*.60) | |
1071 movwf xA+0 | |
1072 movlw HIGH (.5*.60) | |
1073 movwf xA+1 | |
1074 call mult16x16 ;xA*xB=xC | |
1075 | |
1076 movf xC+0,w | |
1077 addwf average_depth_hold+0,F | |
1078 movf xC+1,w | |
1079 addwfc average_depth_hold+1,F | |
1080 movf xC+2,w | |
1081 addwfc average_depth_hold+2,F | |
1082 movf xC+3,w | |
1083 addwfc average_depth_hold+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar | |
1084 | |
1085 ; Do the same for the _total registers (Non-Resettable) | |
1086 movf xC+0,w | |
1087 addwf average_depth_hold_total+0,F | |
1088 movf xC+1,w | |
1089 addwfc average_depth_hold_total+1,F | |
1090 movf xC+2,w | |
1091 addwfc average_depth_hold_total+2,F | |
1092 movf xC+3,w | |
1093 addwfc average_depth_hold_total+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar | |
1094 | |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1095 movlw .5 |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
1096 movwf up ; counter |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1097 ; 1min mode |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1098 divemode_option6_2: |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1099 movlw .1 |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1100 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
|
1101 clrf TMR5L |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1102 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
|
1103 call deco_calc_hauptroutine ; calc_tissue |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1104 movlb .1 |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1105 decfsz up,F ; Done? |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1106 bra divemode_option6_2 ; Not yet |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1107 bsf divemode2 ; continue divetime |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1108 call menuview_toggle_reset |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1109 return |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1110 |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
1111 divemode_option7: |
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
1112 ; Store heading for compass view |
255 | 1113 movff compass_heading_shown+0,compass_bearing+0 |
1114 movff compass_heading_shown+1,compass_bearing+1 | |
1115 bsf compass_bearing_set ; set flag | |
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
239
diff
changeset
|
1116 call menuview_toggle_reset ; Done. |
216
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1117 return |
973a0969e0ac
NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents:
206
diff
changeset
|
1118 |
0 | 1119 divemode_simulator_check_limits: |
1120 ; Check limits (150m and 0m) | |
1121 movlw LOW d'16000' ; Compare to 16bar=16000mbar (150m). | |
1122 subwf sim_pressure+0,W | |
1123 movlw HIGH d'16000' | |
1124 subwfb sim_pressure+1,W | |
1125 bnc divemode_simulator_check_limits2 ; No-carry = borrow = not deeper | |
1126 | |
1127 ; Too deep, limit to 150m | |
1128 movlw LOW d'16000' | |
1129 movwf sim_pressure+0 | |
1130 movlw HIGH d'16000' | |
1131 movwf sim_pressure+1 | |
1132 return | |
1133 divemode_simulator_check_limits2: | |
1134 movlw LOW d'1000' ; Compare to 1bar == 0m == 1000 mbar. | |
1135 subwf sim_pressure+0,W | |
1136 movlw HIGH d'1000' | |
1137 subwfb sim_pressure+1,W | |
1138 btfsc STATUS,C ; No-carry = borrow = not deeper. | |
1139 return ; Deeper than 0m == Ok. | |
1140 ; Too shallow, limit to 0m | |
1141 movlw LOW d'1000' | |
1142 movwf sim_pressure+0 | |
1143 movlw HIGH d'1000' | |
1144 movwf sim_pressure+1 | |
1145 return | |
1146 | |
1147 ;============================================================================= | |
1148 ; Compare all enabled gas in list, to see if a better one is available. | |
1149 ; | |
1150 ; Output: better_gas_available, better_gas_number | |
1151 ; | |
1152 check_gas_change: ; Checks if a better gas should be selected (by user) | |
1153 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
1154 clrf better_gas_number ; Clear better gas register | |
1155 | |
1156 SAFE_2BYTE_COPY rel_pressure,xA | |
1157 movlw d'100' | |
1158 movwf xB+0 | |
1159 clrf xB+1 | |
1160 call div16x16 ; compute depth in full m -> result in xC+0 | |
1161 | |
1162 btfss FLAG_ccr_mode ; In CCR mode... | |
1163 bra check_gas_change_OC_bail; No, check for OC or bailout | |
1164 btfsc is_bailout ; Bailout? | |
1165 bra check_gas_change_OC_bail; Yes, check for OC or bailout | |
1166 | |
1167 ; Check Diluents | |
160
99ac325586ce
BUGFIX: Fast diluent (w/o dive mode menu) change did not work correctly
heinrichsweikamp
parents:
152
diff
changeset
|
1168 bsf ccr_diluent_setup ; in CCR menus |
0 | 1169 movlw .0 |
1170 rcall check_dil_common ; With Gas 0-4 in WREG | |
1171 movlw .1 | |
1172 rcall check_dil_common ; With Gas 0-4 in WREG | |
1173 movlw .2 | |
1174 rcall check_dil_common ; With Gas 0-4 in WREG | |
1175 movlw .3 | |
1176 rcall check_dil_common ; With Gas 0-4 in WREG | |
1177 movlw .4 | |
1178 rcall check_dil_common ; With Gas 0-4 in WREG | |
1179 bra check_gas_change_exit | |
1180 | |
1181 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
|
1182 bcf ccr_diluent_setup ; in OC menus |
0 | 1183 movlw .0 |
1184 rcall check_gas_common ; With Gas 0-4 in WREG | |
1185 movlw .1 | |
1186 rcall check_gas_common ; With Gas 0-4 in WREG | |
1187 movlw .2 | |
1188 rcall check_gas_common ; With Gas 0-4 in WREG | |
1189 movlw .3 | |
1190 rcall check_gas_common ; With Gas 0-4 in WREG | |
1191 movlw .4 | |
1192 rcall check_gas_common ; With Gas 0-4 in WREG | |
1193 ; bra check_gas_change_exit | |
1194 check_gas_change_exit: | |
1195 btfss better_gas_available ; Is a better gas available | |
1196 bcf blinking_better_gas ; No, Clear blinking flag | |
1197 btfss better_gas_available ; Is a better gas available | |
1198 clrf better_gas_number ; No, Clear better_gas_number (For gaslist display) | |
1199 call TFT_active_gas_divemode ; Display gas/Setpoint | |
1200 return | |
1201 | |
1202 check_gas_common: ; With Gas 0-4 in WREG | |
1203 btfsc better_gas_available ; Better Gas already found? | |
1204 return ; Yes, return | |
1205 lfsr FSR1,opt_gas_type ; 0=Disabled, 1=First, 2=Travel, 3=Deco | |
1206 btfss PLUSW1,0 ; Test for Bit0 and 1 -> type=3 -> Deco | |
1207 return ; No | |
1208 btfss PLUSW1,1 ; Test for Bit0 and 1 -> type=3 -> Deco | |
1209 return ; No | |
1210 incf WREG,W ; 1-5 | |
1211 cpfseq active_gas ; is this gas currently selected? | |
1212 bra check_gas_common2 ; No | |
1213 return ; Yes, skip test for active gas | |
1214 check_gas_common2: | |
1215 decf WREG,W ; 0-4 | |
1216 movwf hi ; Save tested gas 0-4 | |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
89
diff
changeset
|
1217 lfsr FSR1,opt_OC_bail_gas_change |
0 | 1218 movff PLUSW1,lo ; Change depth into lo |
1219 movlw minimum_change_depth | |
1220 cpfsgt lo ; Change depth>minimum_change_depth? | |
1221 return ; No, Change depth not deep enough, skip! | |
1222 movf xC+0,W ; load depth in m into WREG | |
1223 cpfsgt lo ; gas_change_depth < current depth? | |
69 | 1224 bra check_gas_common3 ; No, check if we are within the better_gas_window_pos window |
1225 incf hi,W ; 1-5 | |
1226 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available | |
1227 movlw better_gas_window_neg | |
1228 subwf lo,W ; Change depth-better_gas_window_neg | |
1229 cpfslt xC+0 ; current depth<Change depth-better_gas_window_neg? | |
1230 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
1231 return | |
1232 | |
1233 check_gas_common3: | |
0 | 1234 incf hi,W ; 1-5 |
1235 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available | |
69 | 1236 movlw better_gas_window_pos |
1237 addwf lo,W ; Change depth+better_gas_window_pos | |
1238 cpfsgt xC+0 ; current depth>Change depth+better_gas_window_pos? | |
1239 bra check_gas_common4 ; Ok, now check the better gas ppO2<opt_ppO2_max | |
1240 return | |
1241 | |
1242 check_gas_common4: | |
1243 movf hi,W ; 0-4 | |
1244 lfsr FSR1,char_I_deco_N2_ratio | |
1245 movff PLUSW1,lo ; N2 ratio into lo | |
1246 lfsr FSR1,char_I_deco_He_ratio | |
1247 movff PLUSW1,xB+0 ; He ratio into xB+0 | |
1248 movf xB+0,W | |
1249 addwf lo,F | |
1250 movlw .101 | |
1251 bcf STATUS,C | |
1252 subfwb lo,F ; O2 ratio in lo | |
1253 | |
1254 SAFE_2BYTE_COPY amb_pressure, xA | |
1255 movlw d'10' | |
1256 movwf xB+0 | |
1257 clrf xB+1 | |
1258 call div16x16 ; xC=p_amb/10 | |
1259 movff xC+0,xA+0 | |
1260 movff xC+1,xA+1 | |
1261 movff lo,xB+0 ; =O2 ratio | |
1262 clrf xB+1 | |
1263 call mult16x16 ; lo * p_amb/10 | |
1264 | |
1265 ; Check very high ppO2 manually | |
1266 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? | |
1267 return ; Done. | |
1268 ; Check if ppO2>3,30bar | |
1269 btfsc xC+1,7 | |
1270 return ; Done. | |
1271 | |
1272 ; ; Check for low ppo2 | |
1273 ; movff xC+0,sub_b+0 | |
1274 ; movff xC+1,sub_b+1 | |
1275 ; movff opt_ppO2_min,WREG | |
1276 ; mullw d'100' ; opt_ppO2_min*100 | |
1277 ; movff PRODL,sub_a+0 | |
1278 ; movff PRODH,sub_a+1 | |
1279 ; call subU16 | |
1280 ; btfss neg_flag | |
1281 ; return ; Done (Too low). | |
1282 | |
1283 ;check if we are within our warning thresholds! | |
1284 movff xC+0,sub_b+0 | |
1285 movff xC+1,sub_b+1 | |
1286 movff opt_ppO2_max,WREG ; PPO2 Max for MOD calculation and color coding in divemode | |
1287 addlw .1 ; e.g. >1.60 | |
1288 mullw d'100' ; opt_ppO2_max*100 | |
1289 movff PRODL,sub_a+0 | |
1290 movff PRODH,sub_a+1 | |
1291 call subU16 | |
1292 btfss neg_flag | |
0 | 1293 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
69 | 1294 return ; Done. |
0 | 1295 |
1296 check_dil_common: ; With Dil 0-4 in WREG | |
1297 btfsc better_gas_available ; Better Diluent already found? | |
1298 return ; Yes, return | |
1299 lfsr FSR1,opt_dil_type ; 0=Disabled, 1=First, 2=Normal | |
1300 tstfsz PLUSW1 ; =0? | |
1301 bra check_dil_common1 ; No | |
1302 return ; Yes, skip inactive diluents for test | |
1303 check_dil_common1: | |
1304 incf WREG,W ; 1-5 | |
1305 cpfseq active_gas ; is this diluent currently selected? | |
1306 bra check_dil_common2 ; No | |
1307 return ; Yes, skip test for active diluent | |
1308 check_dil_common2: | |
1309 decf WREG,W ; 0-4 | |
1310 movwf hi ; Save tested diluent 0-4 | |
1311 lfsr FSR1,char_I_dil_change | |
1312 movff PLUSW1,lo ; Change depth into lo | |
1313 movlw minimum_change_depth | |
1314 cpfsgt lo ; Change depth>minimum_change_depth? | |
1315 return ; No, Change depth not deep enough, skip! | |
1316 movf xC+0,W ; load depth in m into WREG | |
1317 cpfsgt lo ; gas_change_depth < current depth? | |
1318 return ; No, check next gas | |
1319 incf hi,W ; 1-5 | |
1320 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available | |
69 | 1321 movlw better_gas_window_neg |
1322 subwf lo,W ; Change depth-better_gas_window_neg | |
1323 cpfslt xC+0 ; current depth<Change depth-better_gas_window_neg? | |
0 | 1324 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1325 return | |
1326 | |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1327 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1328 ;============================================================================= |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1329 ; Check for Auto-SP |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1330 ; |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1331 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
|
1332 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
|
1333 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
|
1334 bz check_dive_autosp2 ; Yes, check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1335 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
|
1336 check_dive_autosp2: |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1337 SAFE_2BYTE_COPY rel_pressure,xA |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1338 movlw d'100' |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1339 movwf xB+0 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1340 clrf xB+1 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1341 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
|
1342 ; Check SP2 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1343 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
|
1344 bra check_dive_autosp3 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1345 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
|
1346 tstfsz lo ; =0? |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1347 bra $+4 ; No, continue |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1348 bra check_dive_autosp3 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1349 decf lo,W ; -1 -> WREG |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1350 cpfsgt xC+0 ; Compare with depth |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1351 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
|
1352 ; auto switch to SP2 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1353 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
|
1354 rcall xmit_sp_set_flag |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1355 bsf sp2_switched ; Set flag |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1356 check_dive_autosp3: |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1357 ; Check SP3 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1358 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
|
1359 bra check_dive_autosp4 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1360 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
|
1361 tstfsz lo ; =0? |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1362 bra $+4 ; No, continue |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1363 bra check_dive_autosp4 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1364 decf lo,W ; -1 -> WREG |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1365 cpfsgt xC+0 ; Compare with depth |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1366 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
|
1367 ; auto switch to SP3 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1368 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
|
1369 rcall xmit_sp_set_flag |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1370 bsf sp3_switched ; Set flag |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1371 check_dive_autosp4: |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1372 ; Check SP4 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1373 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
|
1374 bra check_dive_autosp5 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1375 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
|
1376 tstfsz lo ; =0? |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1377 bra $+4 ; No, continue |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1378 bra check_dive_autosp5 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1379 decf lo,W ; -1 -> WREG |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1380 cpfsgt xC+0 ; Compare with depth |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1381 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
|
1382 ; auto switch to SP4 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1383 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
|
1384 rcall xmit_sp_set_flag |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1385 bsf sp4_switched ; Set flag |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1386 check_dive_autosp5: |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1387 ; Check SP5 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1388 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
|
1389 bra check_dive_autosp6 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1390 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
|
1391 tstfsz lo ; =0? |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1392 bra $+4 ; No, continue |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1393 bra check_dive_autosp6 ; Skip check |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1394 decf lo,W ; -1 -> WREG |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1395 cpfsgt xC+0 ; Compare with depth |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1396 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
|
1397 ; auto switch to SP5 |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1398 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
|
1399 rcall xmit_sp_set_flag |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1400 bsf sp5_switched ; Set flag |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1401 check_dive_autosp6: |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1402 return |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1403 |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1404 xmit_sp_set_flag: |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1405 movff char_I_const_ppO2,WREG |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1406 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
|
1407 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
|
1408 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
|
1409 return |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1410 |
0 | 1411 ;============================================================================= |
1412 ; Setup everything to enter divemode. | |
1413 ; | |
1414 dive_boot_oc: | |
1415 extern get_first_gas_to_WREG | |
1416 call get_first_gas_to_WREG ; Gets first gas (0-4) into WREG | |
1417 movff WREG,char_I_first_gas ; Copy for compatibility | |
1418 rcall setup_gas_registers ; With WREG=Gas 0-4 | |
197 | 1419 banksel char_I_first_gas |
1420 incf char_I_first_gas,F ; 0-4 -> 1-5 | |
1421 banksel common | |
0 | 1422 return |
1423 | |
1424 dive_boot_cc: | |
277
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
1425 bcf is_bailout ; =1: Bailout |
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
1426 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
|
1427 bcf blinking_setpoint ; Reset blinking SP flag |
192 | 1428 call compute_ppo2 ; compute mv_sensorX and ppo2_sensorX arrays |
1429 bsf voting_logic_sensor1 | |
1430 bsf voting_logic_sensor2 | |
1431 bsf voting_logic_sensor3 | |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
1432 call divemode_setup_sensor_values ; setup sensor values |
192 | 1433 |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
1434 ; Setup first SP for Fixed or Auto mode |
398
1f2e35f5a5aa
BUGFIX: Make sure SP1 is always selected on start in Auto-SP mode
heinrichsweikamp
parents:
389
diff
changeset
|
1435 movff opt_ccr_mode,WREG ; =0: Fixed SP, =1: Sensor, =2: Auto SP |
1f2e35f5a5aa
BUGFIX: Make sure SP1 is always selected on start in Auto-SP mode
heinrichsweikamp
parents:
389
diff
changeset
|
1436 sublw .1 ; opt_ccr_mode = 1 (Sensor)? |
1f2e35f5a5aa
BUGFIX: Make sure SP1 is always selected on start in Auto-SP mode
heinrichsweikamp
parents:
389
diff
changeset
|
1437 movff char_I_setpoint_cbar+0,char_I_const_ppO2 ; No, setup fixed Setpoint (Always start with SP1) |
352
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1438 movff char_I_const_ppO2,WREG |
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
1439 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
|
1440 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
|
1441 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
|
1442 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
|
1443 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
|
1444 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
|
1445 |
0 | 1446 extern get_first_dil_to_WREG |
1447 call get_first_dil_to_WREG ; Gets first gas (0-4) into WREG | |
1448 movff WREG,char_I_first_gas ; Copy for compatibility | |
1449 rcall setup_dil_registers ; With WREG=Gas 0-4 | |
197 | 1450 banksel char_I_first_gas |
1451 incf char_I_first_gas,F ; 0-4 -> 1-5 | |
1452 banksel common | |
385
b075fa71b659
BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents:
382
diff
changeset
|
1453 call calc_deko_divemode_sensor ; External sensor stuff |
0 | 1454 return |
1455 | |
1456 diveloop_boot: | |
1457 call restart_set_modes_and_flags | |
1458 | |
1459 call I2C_sleep_accelerometer ; Stop accelerometer | |
1460 call I2C_sleep_compass ; Stop compass | |
1461 | |
1462 clrf WREG | |
1463 movff WREG,max_pressure+0 ; clear some variables | |
1464 movff WREG,max_pressure+1 | |
1465 | |
1466 bcf use_agf ; Start with normal GF set | |
1467 bcf divemode_menu ; clear divemode menu flag | |
1468 movlw d'1' | |
1469 movwf apnoe_max_pressure+0 | |
1470 clrf apnoe_max_pressure+1 | |
386 | 1471 ; clrf apnoe_surface_mins |
1472 ; clrf apnoe_surface_secs | |
0 | 1473 clrf apnoe_mins |
1474 clrf divemins+0 | |
1475 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
|
1476 |
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
|
1477 ; 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
|
1478 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
|
1479 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
|
1480 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
|
1481 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
|
1482 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
|
1483 |
277
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
1484 bcf no_more_divesecs ; =1: Do no longer show seconds in divemode |
0 | 1485 bcf divemode_menu_active |
1486 clrf menupos | |
277
24daa6523218
1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents:
275
diff
changeset
|
1487 clrf menupos2 ; Reset to zero (Zero=no premenu or simulator task) |
0 | 1488 |
1489 btfss FLAG_ccr_mode | |
1490 rcall dive_boot_oc | |
1491 btfsc FLAG_ccr_mode | |
1492 rcall dive_boot_cc | |
1493 | |
403
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1494 ; Copy opt_dil_types into backup (For "lost gas" feature) |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1495 movff opt_dil_type+0,opt_dil_type_backup+0 ; 0=Disabled, 1=First, 2=Normal |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1496 movff opt_dil_type+1,opt_dil_type_backup+1 ; 0=Disabled, 1=First, 2=Normal |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1497 movff opt_dil_type+2,opt_dil_type_backup+2 ; 0=Disabled, 1=First, 2=Normal |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1498 movff opt_dil_type+3,opt_dil_type_backup+3 ; 0=Disabled, 1=First, 2=Normal |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1499 movff opt_dil_type+4,opt_dil_type_backup+4 ; 0=Disabled, 1=First, 2=Normal |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1500 ; Copy opt_gas_types into backup (For "lost gas" feature) |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1501 movff opt_gas_type+0,opt_gas_type_backup+0 ; 0=Disabled, 1=First, 2=Travel, 3=Deco |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1502 movff opt_gas_type+1,opt_gas_type_backup+1 ; 0=Disabled, 1=First, 2=Travel, 3=Deco |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1503 movff opt_gas_type+2,opt_gas_type_backup+2 ; 0=Disabled, 1=First, 2=Travel, 3=Deco |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1504 movff opt_gas_type+3,opt_gas_type_backup+3 ; 0=Disabled, 1=First, 2=Travel, 3=Deco |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1505 movff opt_gas_type+4,opt_gas_type_backup+4 ; 0=Disabled, 1=First, 2=Travel, 3=Deco |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1506 ; Also copy change depths into backup (For "lost gas" feature) |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1507 movff opt_OC_bail_gas_change+0,opt_OC_bail_gas_change_backup+0 ; Gas change depths OC/Bailout |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1508 movff opt_OC_bail_gas_change+1,opt_OC_bail_gas_change_backup+1 ; Gas change depths OC/Bailout |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1509 movff opt_OC_bail_gas_change+2,opt_OC_bail_gas_change_backup+2 ; Gas change depths OC/Bailout |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1510 movff opt_OC_bail_gas_change+3,opt_OC_bail_gas_change_backup+3 ; Gas change depths OC/Bailout |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1511 movff opt_OC_bail_gas_change+4,opt_OC_bail_gas_change_backup+4 ; Gas change depths OC/Bailout |
6e60012bb3fc
NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents:
399
diff
changeset
|
1512 |
0 | 1513 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1514 clrf better_gas_number ; Clear better gas register | |
1515 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1516 bcf show_safety_stop ;=1: Show the safety stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1517 clrf safety_stop_countdown ; Clear count-down |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1518 |
0 | 1519 clrf samplesecs |
1520 clrf apnoe_timeout_counter ; timeout in minutes | |
1521 clrf timeout_counter ; takes care of the timeout (Low byte) | |
1522 clrf timeout_counter2 ; takes care of the timeout (High byte) | |
1523 clrf AlarmType ; Clear all alarms | |
1524 bcf event_occured ; clear flag | |
1525 clrf total_divetime_seconds+1 | |
1526 clrf average_depth_hold_total+0 | |
1527 clrf average_depth_hold_total+1 | |
1528 clrf average_depth_hold_total+2 | |
1529 clrf average_depth_hold_total+3 ; Clear Non-Resettable Average | |
1530 rcall reset_average1 ; Reset the resettable average depth | |
1531 bcf decostop_active | |
1532 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
204 | 1533 call ghostwriter_short_header ; Write short header with divenumber into profile memory |
0 | 1534 |
1535 btfsc simulatormode_active | |
1536 bra diveloop_boot_1 | |
1537 ; Normal mode = Surface pressure is the pressure 30mn before dive. | |
1538 SAFE_2BYTE_COPY last_surfpressure_30min, int_I_pres_surface ;copy surfacepressure to deco routine | |
1539 SAFE_2BYTE_COPY last_surfpressure_30min, last_surfpressure ;copy surfacepressure to last_surfpressure for correct depth | |
1540 bra diveloop_boot_2 | |
1541 | |
1542 diveloop_boot_1: | |
1543 ; Simulator mode: Surface pressure is 1bar. | |
1544 movlw LOW .1000 | |
1545 movff WREG,int_I_pres_surface+0 ; LOW copy surfacepressure to deco routine | |
1546 movlw HIGH .1000 | |
1547 movff WREG,int_I_pres_surface+1 ; HIGH copy surfacepressure to deco routine | |
1548 | |
1549 diveloop_boot_2: | |
1550 SAFE_2BYTE_COPY temperature,minimum_temperature ; Reset Min-Temp registers | |
1551 | |
1552 ; Init profile recording parameters | |
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
0
diff
changeset
|
1553 movff samplingrate,samplesecs_value ; to avoid EEPROM access in the ISR |
0 | 1554 movlw div_temperature |
1555 movwf divisor_temperature ; load divisors for profile storage | |
1556 movlw div_deco | |
1557 movwf divisor_deco | |
1558 movlw div_gf | |
1559 movwf divisor_gf | |
1560 movlw div_ppo2_sensors | |
1561 movwf divisor_ppo2_sensors | |
1562 movlw div_decoplan | |
1563 movwf divisor_decoplan | |
1564 movlw div_cns | |
1565 movwf divisor_cns | |
1566 movlw div_tank | |
1567 movwf divisor_tank | |
1568 | |
1569 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
|
1570 bra divemode_boot1 |
0 | 1571 ; Overwrite some parameters in Apnoe mode.... |
1572 movlw samplingrate_apnoe | |
1573 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
|
1574 divemode_boot1: |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1575 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
|
1576 bra divemode_boot2 |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1577 ; in OC Mode, disable ppO2 logging |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1578 movlw .0 |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1579 movwf divisor_ppo2_sensors |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1580 divemode_boot2: |
0 | 1581 |
1582 bcf LEDg | |
1583 bcf LEDr | |
1584 bcf realdive | |
1585 btfss simulatormode_active ; do not disable in simulator mode! | |
1586 call disable_rs232 ; Disable RS232 | |
1587 btfsc enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump) | |
1588 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
|
1589 ; Reset divetime seconds |
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
38
diff
changeset
|
1590 movlw .2 ; Start at 2seconds |
0 | 1591 movwf total_divetime_seconds+0 |
39
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
38
diff
changeset
|
1592 movwf divesecs |
e4e91fe8b09d
remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents:
38
diff
changeset
|
1593 movwf apnoe_secs |
0 | 1594 bsf divemode2 ; displayed divetime is running (Divetime starts HERE) |
1595 | |
1596 movff int_O_CNS_fraction+0,CNS_start+0 | |
1597 movff int_O_CNS_fraction+1,CNS_start+1 ; Save CNS value at beginning of dive | |
1598 movff char_O_relative_gradient_GF,GF_start ; Save GF value at beginning of dive | |
1599 return ; Done with divemode boot | |
1600 | |
1601 divemode_check_for_warnings: | |
131 | 1602 movlw .2 |
1603 cpfsgt warning_counter ; only two warnings active? | |
1604 bra divemode_check_for_warnings1 ; Yes, update every second | |
1605 | |
1606 btfss secs,0 ; Every two seconds... | |
1607 return | |
1608 btfss secs,1 ; Every four seconds... | |
0 | 1609 return |
1610 | |
131 | 1611 divemode_check_for_warnings1: |
0 | 1612 movf warning_counter_backup,W |
1613 cpfseq warning_counter ; warning_counter_backup = warning_counter? | |
1614 call TFT_clear_warning_text ; No, clear all warnings | |
1615 movff warning_counter,warning_counter_backup ; copy warning_counter | |
1616 | |
1617 bcf warning_active ; Clear flag | |
1618 clrf warning_counter ; Clear counter | |
1619 | |
1620 ; Warnings for all modes | |
1621 call check_warn_battery ; Check if the battery level should be displayed/warned | |
55 | 1622 call check_divetimeout ; Not actually a warning. Check and show the divemode timeout |
0 | 1623 |
1624 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode | |
1625 bra divemode_check_for_warnings2 | |
1626 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode | |
1627 bra divemode_check_for_warnings2 | |
1628 | |
1629 ; Warnings only in deco modes | |
1630 btfss FLAG_ccr_mode ; Don't check in CCR mode | |
1631 rcall check_ppO2 ; check ppO2 and displays warning, if required | |
1632 btfsc is_bailout ; But check in Bailout case... | |
1633 rcall check_ppO2 ; check ppO2 and displays warning, if required | |
1634 rcall check_cns_violation ; Check CNS value and display it, if required | |
1635 btfsc decostop_active ; In deco mode? | |
1636 rcall check_and_store_gf_violation ; Yes, Sets warnings, if required | |
1637 btfsc decostop_active ; In deco mode? | |
1638 call TFT_ftts ; Show @+x time | |
1639 btfsc use_agf ; In aGF mode? | |
1640 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
|
1641 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
|
1642 rcall warn_fallback ; Show the warning |
0 | 1643 |
1644 divemode_check_for_warnings2: | |
1645 ; Display the warning icon? | |
1646 btfsc warning_active ; Any warning active? | |
1647 call TFT_divemode_warning ; Yes | |
1648 btfss warning_active ; Any warning active? | |
1649 call TFT_divemode_warning_clear ; No, clear warning icon | |
1650 | |
1651 ; Setup warning_page number | |
1652 incf warning_page,F | |
1653 bcf STATUS,C | |
1654 rlcf warning_page,W ; *2 | |
1655 cpfsgt warning_counter ; > warning_counter | |
1656 clrf warning_page ; No, clear | |
1657 | |
1658 ; Clear 2nd row of warnings if there is nothing to show (on this page) | |
1659 btfss second_row_warning ; =1: The second row contains a warning | |
1660 call TFT_clear_warning_text_2nd_row ; No, clear this row | |
1661 return ; Done. | |
1662 | |
1663 global check_warn_battery | |
1664 check_warn_battery: | |
1665 movff batt_percent,lo | |
1666 movlw battery_show_level+1 | |
1667 cpfslt lo | |
1668 return ; No Display, no warning | |
1669 ; Display Battery, but warn? | |
1670 incf warning_counter,F ; increase counter | |
1671 call TFT_update_batt_percent_divemode ; Show percent | |
1672 | |
86 | 1673 movff batt_percent,lo |
0 | 1674 movlw color_code_battery_low+1 |
1675 cpfslt lo ; | |
1676 return ; No warning | |
1677 bsf warning_active ; Set Warning flag | |
1678 return | |
1679 | |
55 | 1680 check_divetimeout: |
1681 btfsc divemode2 | |
1682 return ; displayed divetime is not running | |
1683 incf warning_counter,F ; increase counter | |
386 | 1684 goto TFT_divetimeout ; Show timeout counter (and return) |
55 | 1685 |
1686 | |
0 | 1687 check_ppO2: ; check current ppO2 and display warning if required |
1688 SAFE_2BYTE_COPY amb_pressure, xA | |
1689 movlw d'10' | |
1690 movwf xB+0 | |
1691 clrf xB+1 | |
1692 call div16x16 ; xC=p_amb/10 | |
1693 | |
1694 movff xC+0,xA+0 | |
1695 movff xC+1,xA+1 | |
1696 movff char_I_O2_ratio,xB+0 ; =O2 ratio | |
1697 clrf xB+1 | |
1698 call mult16x16 ; char_I_O2_ratio * p_amb/10 | |
1699 | |
1700 ; Check very high ppO2 manually | |
1701 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? | |
1702 bra check_ppO2_1 ; Yes, display Value! | |
1703 ; Check if ppO2>3,30bar | |
1704 btfsc xC+1,7 | |
1705 bra check_ppO2_1 ; Yes! | |
1706 | |
1707 ; Check for low ppo2 | |
1708 movff xC+0,sub_b+0 | |
1709 movff xC+1,sub_b+1 | |
1710 movff opt_ppO2_min,WREG | |
1711 mullw d'100' ; opt_ppO2_min*100 | |
1712 movff PRODL,sub_a+0 | |
1713 movff PRODH,sub_a+1 | |
1714 call subU16 | |
1715 btfsc neg_flag | |
1716 bra check_ppO2_0 ; Not too low | |
1717 ; ppO2 low | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1718 rcall check_ppo2_display ; display if not already shown in custom view |
0 | 1719 movlw d'4' ; Type of Alarm (ppO2 low) |
1720 movwf AlarmType ; Copy to Alarm Register | |
1721 bsf event_occured ; Set Event Flag | |
1722 bsf warning_active ; Set Warning flag | |
1723 return ; Done. | |
1724 | |
1725 check_ppO2_0: | |
1726 ; 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
|
1727 movlw .0 |
3d43da7acfe1
Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents:
318
diff
changeset
|
1728 TSTOSS opt_showppo2 ; 0=no, 1=always show |
0 | 1729 movlw ppo2_display_high |
1730 mullw d'100' ; ppo2_display_high*100 | |
1731 movff PRODL,sub_a+0 | |
1732 movff PRODH,sub_a+1 | |
1733 call subU16 | |
1734 btfss neg_flag | |
1735 return ; No Display, no warning | |
1736 ; 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
|
1737 rcall check_ppo2_display ; display if not already shown in custom view |
0 | 1738 |
1739 ;check if we are within our warning thresholds! | |
1740 movff xC+0,sub_b+0 | |
1741 movff xC+1,sub_b+1 | |
1742 movff opt_ppO2_max,WREG ; PPO2 Max for MOD calculation and color coding in divemode | |
69 | 1743 addlw .1 ; e.g. >1.60 |
0 | 1744 mullw d'100' ; opt_ppO2_max*100 |
1745 movff PRODL,sub_a+0 | |
1746 movff PRODH,sub_a+1 | |
1747 call subU16 | |
1748 btfss neg_flag | |
1749 return ; Done. Not too high | |
1750 movlw d'5' ; Type of Alarm (ppO2 high) | |
1751 movwf AlarmType ; Copy to Alarm Register | |
1752 bsf event_occured ; Set Event Flag | |
1753 bsf warning_active ; Set Warning flag | |
1754 return ; Done. | |
1755 | |
1756 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
|
1757 rcall check_ppo2_display ; display if not already shown in custom view |
0 | 1758 movlw d'5' ; Type of Alarm |
1759 movwf AlarmType ; Copy to Alarm Register | |
1760 bsf event_occured ; Set Event Flag | |
1761 bsf warning_active ; Set Warning flag | |
1762 return ; Done. | |
1763 | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1764 check_ppo2_display: |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1765 movlw .9 |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1766 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
|
1767 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
|
1768 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
|
1769 check_ppO2_a: |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
352
diff
changeset
|
1770 incf warning_counter,F ; increase counter |
386 | 1771 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
|
1772 |
0 | 1773 global check_cns_violation |
1774 check_cns_violation: | |
1775 ; Check if CNS should be displayed | |
1776 movff int_O_CNS_fraction+1,lo ; copy into bank1 | |
1777 tstfsz lo ; >255% ? | |
1778 bra check_cns_violation2 ; Yes | |
1779 movff int_O_CNS_fraction+0,lo ; copy into bank1 | |
1780 | |
1781 movlw cns_warning_high ; cns_warning_high | |
1782 subwf lo,W | |
1783 btfsc STATUS,C | |
1784 bsf warning_active ; Set Warning flag | |
1785 | |
1786 movlw cns_display_high ; cns_display_high | |
1787 subwf lo,W | |
1788 btfss STATUS,C | |
1789 return ; No Display, no warning | |
1790 ; Display CNS | |
1791 incf warning_counter,F ; increase counter | |
386 | 1792 goto TFT_display_cns ; Show CNS (and return) |
0 | 1793 |
1794 check_cns_violation2: | |
1795 incf warning_counter,F ; increase counter | |
386 | 1796 bsf warning_active ; Set Warning flag |
1797 goto TFT_display_cns ; Show CNS (and return) | |
0 | 1798 |
1799 global check_and_store_gf_violation | |
1800 check_and_store_gf_violation: | |
1801 movff char_O_gradient_factor,lo ; gradient factor absolute (Non-GF model) | |
1802 movff char_I_deco_model,hi | |
1803 decfsz hi,F ; jump over next line if char_I_deco_model == 1 | |
1804 movff char_O_relative_gradient_GF,lo ; gradient factor relative (GF model) | |
1805 | |
1806 movlw gf_warning_high | |
1807 cpfsgt lo | |
1808 bra check_and_store_gf_violation2 ; No warning | |
1809 movlw d'2' ; Type of Alarm | |
1810 movwf AlarmType ; Copy to Alarm Register | |
1811 bsf event_occured ; Set Event Flag | |
1812 bsf warning_active ; Set Warning flag | |
1813 check_and_store_gf_violation2: | |
1814 movlw gf_display_high | |
1815 cpfsgt lo | |
1816 return ; No Display, no warning | |
1817 ; Display GF | |
1818 incf warning_counter,F ; increase counter | |
386 | 1819 goto TFT_warning_gf ; Show GF Warning (and return) |
0 | 1820 |
1821 warn_agf: | |
1822 incf warning_counter,F ; increase counter | |
386 | 1823 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
|
1824 |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
1825 warn_fallback: |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
1826 incf warning_counter,F ; increase counter |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
138
diff
changeset
|
1827 bsf warning_active ; Set Warning flag |
386 | 1828 goto TFT_warning_fallback ; Show fallback warning (and return) |
0 | 1829 |
1830 | |
1831 END |