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