Mercurial > public > hwos_code
annotate src/divemode.asm @ 643:7d8a4c60ec1a
3.15 release
author | heinrichsweikamp |
---|---|
date | Mon, 24 May 2021 18:40:53 +0200 |
parents | 8c1f1f334275 |
children | 070528a88715 357341239438 |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
640 | 3 ; File divemode.asm * combined next generation V3.12.3 |
0 | 4 ; |
623 | 5 ; Dive Mode |
0 | 6 ; |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-08-15 : [mH] moving from OSTC code | |
11 | |
604 | 12 #include "hwos.inc" ; mandatory header |
13 #include "shared_definitions.h" ; mailbox from/to p2_deco.c | |
582 | 14 #include "tft_outputs.inc" |
15 #include "strings.inc" | |
16 #include "tft.inc" | |
17 #include "eeprom_rs232.inc" | |
18 #include "math.inc" | |
19 #include "wait.inc" | |
20 #include "customview.inc" | |
21 #include "start.inc" | |
22 #include "adc_lightsensor.inc" | |
23 #include "ghostwriter.inc" | |
24 #include "i2c.inc" | |
25 #include "calibrate.inc" | |
26 #include "convert.inc" | |
623 | 27 #include "surfmode.inc" |
604 | 28 #include "rx_ops.inc" |
623 | 29 |
30 | |
582 | 31 extern do_line_menu |
32 extern do_main_divemenu | |
623 | 33 extern menu_draw_lines_divemode |
634 | 34 extern menu_draw_cursor_dive |
582 | 35 extern init_recording_params |
631 | 36 extern option_check_and_store_all |
582 | 37 |
623 | 38 IFDEF _compass |
39 extern TFT_dive_compass_heading | |
40 ENDIF | |
41 | |
631 | 42 IFDEF _cave_mode |
43 extern do_main_cavemenu | |
44 ENDIF | |
623 | 45 |
634 | 46 |
623 | 47 ;---- Private local Variables ------------------------------------------------- |
582 | 48 |
49 CBLOCK local1 ; max size is 16 Byte !!! | |
50 sensor_setpoint ; sensor ppo2 in 0.01bar for deco routine | |
604 | 51 check_gas_num ; used in search for best gas/dil: current gas/dil number (1-5) |
52 check_gas_depth ; used in search for best gas/dil: current gas/dil change depth | |
53 check_gas_type ; used in search for best gas/dil: current gas/dil type | |
54 check_gas_O2_ratio ; used in search for best gas/dil: current gas/dil O2 ratio | |
55 best_gas_num ; used in search for best gas/dil: best gas/dil number (1-5) CAUTION: there is also a variable named best_gas_number ! | |
56 best_gas_depth ; used in search for best gas/dil: best gas/dil change depth | |
623 | 57 last_pressure_velocity:2 ; cached last absolute pressure for velocity calculation |
58 TFT_output_flags_1 ; TFT update flags for output phase 1 | |
59 TFT_output_flags_2 ; TFT update flags for output phase 2 | |
60 TFT_output_flags_3 ; TFT update flags for output phase 3 | |
61 TFT_output_flags_4 ; TFT update flags for output phase 4 | |
62 DM_flags_local ; various dive mode flags | |
63 ENDC ; used: 14 byte, remaining: 2 byte | |
604 | 64 |
65 CBLOCK local2 ; max size is 16 Byte !!! | |
623 | 66 pressure_rel_accu_trip:4 ; pressure accumulator for calculating the resettable average depth |
67 pressure_rel_accu_total:4 ; pressure accumulator for calculating the total dive average depth | |
68 ppO2_min:2 ; used in search for best gas/dil: minimum ppO2 required | |
69 ppO2_max_default:2 ; used in search for best gas/dil: default maximum ppO2 | |
70 ppO2_max_deco:2 ; used in search for best gas/dil: deco maximum ppO2 | |
634 | 71 ENDC ; used: 14 byte, remaining: 2 byte |
623 | 72 |
73 | |
74 ;---- Private local Flags ---------------------------------------------------- | |
75 | |
76 ; TFT_output_flags_1 - phase 1: every second - before deco calculations, all modes | |
77 #DEFINE FLAG_TFT_depth_current TFT_output_flags_1,0 ; =1: show current depth | |
78 #DEFINE FLAG_TFT_depth_maximum TFT_output_flags_1,1 ; =1: show maximum depth | |
79 #DEFINE FLAG_TFT_active_gas_divemode TFT_output_flags_1,2 ; =1: show active gas and dive mode | |
80 #DEFINE FLAG_TFT_apnoe_surface_time TFT_output_flags_1,3 ; =1: show apnoe mode surface time | |
81 #DEFINE FLAG_TFT_depth_maximum_apnoe TFT_output_flags_1,4 ; =1: show maximum depth of last apnoe dive | |
82 #DEFINE FLAG_TFT_clear_apnoe_surface TFT_output_flags_1,5 ; =1: clear apnoe mode surface data from screen | |
83 #DEFINE FLAG_TFT_apnoe_divetime TFT_output_flags_1,6 ; =1: show apnoe mode dive times | |
631 | 84 #DEFINE FLAG_TFT_temperature TFT_output_flags_1,7 ; =1: show temperature (or resettable dive time when in compass view) |
623 | 85 |
86 ; TFT_output_flags_2 - phase 2: every second - before deco calculations, deco modes only | |
87 #DEFINE FLAG_TFT_divemode_mask TFT_output_flags_2,0 ; =1: show dive mode mask | |
88 #DEFINE FLAG_TFT_divetime TFT_output_flags_2,1 ; =1: show dive time | |
89 #DEFINE FLAG_TFT_safety_stop_show TFT_output_flags_2,2 ; =1: show safety stop | |
90 #DEFINE FLAG_TFT_safety_stop_clear TFT_output_flags_2,3 ; =1: clear safety stop | |
631 | 91 ; TFT_output_flags_2,4 ; --- unused |
623 | 92 ; TFT_output_flags_2,5 ; --- unused |
93 ; TFT_output_flags_2,6 ; --- unused | |
94 ; TFT_output_flags_2,7 ; --- unused | |
95 | |
96 ; TFT_output_flags_3 - phase 3: every second - after deco calculations, deco modes only | |
97 #DEFINE FLAG_TFT_clear_deco_data TFT_output_flags_3,0 ; =1: clear deco data (NDL or stop & TTS) | |
98 #DEFINE FLAG_TFT_display_ndl_mask TFT_output_flags_3,1 ; =1: show NDL mask | |
99 #DEFINE FLAG_TFT_display_deco_mask TFT_output_flags_3,2 ; =1: show deco mask | |
100 #DEFINE FLAG_TFT_display_ndl TFT_output_flags_3,3 ; =1: show NDL data | |
101 #DEFINE FLAG_TFT_display_deco TFT_output_flags_3,4 ; =1: show deco stop data | |
102 #DEFINE FLAG_TFT_display_tts TFT_output_flags_3,5 ; =1: show deco TTS data | |
103 ; TFT_output_flags_3,6 ; --- unused | |
104 ; TFT_output_flags_3,7 ; --- unused | |
105 | |
106 ; TFT_output_flags_4 - phase 4: every second - after deco calculations, all modes | |
631 | 107 #DEFINE FLAG_TFT_customview_callup TFT_output_flags_4,0 ; =1: show the custom view mask |
623 | 108 #DEFINE FLAG_TFT_sign_show TFT_output_flags_4,1 ; =1: show the advice / attention / warning sign |
109 #DEFINE FLAG_TFT_sign_clear TFT_output_flags_4,2 ; =1: clear the advice / attention / warning sign | |
110 #DEFINE FLAG_TFT_message_clear_both TFT_output_flags_4,3 ; =1: clear messages, both rows | |
111 #DEFINE FLAG_TFT_message_clear_2nd TFT_output_flags_4,4 ; =1: clear messages, 2nd row only | |
112 #DEFINE FLAG_TFT_velocity_show TFT_output_flags_4,5 ; =1: show vertical velocity | |
113 #DEFINE FLAG_TFT_velocity_clear TFT_output_flags_4,6 ; =1: clear vertical velocity | |
114 ; TFT_output_flags_4,7 ; --- unused | |
115 | |
116 | |
117 ; various Flags | |
631 | 118 #DEFINE new_deco_data_avail DM_flags_local,0 ; =1: new NDL or deco data available |
634 | 119 #DEFINE update_menu DM_flags_local,1 ; =1: redraw the dive menu |
120 #DEFINE FLAG_SP2_used DM_flags_local,2 ; =1: setpoint 2 has been auto-selected already | |
121 #DEFINE FLAG_SP3_used DM_flags_local,3 ; =1: setpoint 3 has been auto-selected already | |
122 #DEFINE FLAG_SP4_used DM_flags_local,4 ; =1: setpoint 4 has been auto-selected already | |
123 #DEFINE FLAG_SP5_used DM_flags_local,5 ; =1: setpoint 5 has been auto-selected already | |
124 ; DM_flags_local,6 ; --- unused | |
631 | 125 ; DM_flags_local,7 ; --- unused |
623 | 126 |
127 | |
582 | 128 ;============================================================================= |
634 | 129 dmode1 CODE |
130 ;============================================================================= | |
131 | |
132 | |
133 ;----------------------------------------------------------------------------- | |
134 ; Entry Point for Dive Mode | |
135 ; | |
0 | 136 global diveloop |
137 diveloop: | |
623 | 138 clrf STKPTR ; clear return addresses stack |
139 | |
140 ; start with a clean time base | |
141 bsf reset_timebase ; request ISR to reset the main timebase, | |
142 ; as we are in dive mode the dive timers will be reset as well | |
143 | |
144 ; reset global flags | |
145 clrf DM_flags_state ; clear all flags for dive mode status | |
146 clrf DM_flags_event ; clear all flags for data recording events | |
631 | 147 clrf DM_flags_request ; clear all flags for user requests / general |
148 IFDEF _cave_mode | |
149 clrf DM_flags_cavereq ; clear all flags for user requests / cave mode | |
150 ENDIF | |
623 | 151 clrf DM_flags_layout1 ; clear all flags for display control / layout (1) |
152 clrf DM_flags_layout2 ; clear all flags for display control / layout (2) | |
631 | 153 clrf DM_flags_layout3 ; clear all flags for display control / layout (3) |
623 | 154 clrf DM_flags_message ; clear all flags for display control / messages |
631 | 155 clrf DM_flags_gas_dil ; clear all flags for display control / gases, diluents, depth |
623 | 156 |
634 | 157 clrf DM_flags_advc_det ; clear all flags for advices detection |
158 clrf DM_flags_advc_ack ; clear all flags for advices acknowledged | |
159 | |
160 clrf DM_flags_att1_det ; clear all flags for attentions detection | |
161 clrf DM_flags_att2_det ; ... | |
162 clrf DM_flags_att3_det ; ... | |
163 | |
164 clrf DM_flags_att1_ack ; clear all flags for attentions acknowledged | |
165 clrf DM_flags_att2_ack ; ... | |
166 clrf DM_flags_att3_ack ; ... | |
167 | |
168 clrf DM_flags_war1_det ; clear all flags for warnings detection | |
169 clrf DM_flags_war2_det ; ... | |
170 | |
171 clrf DM_flags_war1_ack ; clear all flags for warnings acknowledged | |
172 clrf DM_flags_war2_ack ; ... | |
173 | |
174 clrf DM_flags_shown1 ; arm auto show-up of custom views | |
175 clrf DM_flags_shown2 ; ... | |
176 clrf DM_flags_shown3 ; ... | |
177 | |
178 bcf dive_main_menu ; clear dive main menu flag | |
179 bcf dive_pre_menu ; clear dive pre-menu flag | |
623 | 180 |
181 ; reset local flags | |
182 clrf TFT_output_flags_1 ; clear all flags for TFT output phase 1 | |
183 clrf TFT_output_flags_2 ; clear all flags for TFT output phase 2 | |
184 clrf TFT_output_flags_3 ; clear all flags for TFT output phase 3 | |
185 clrf TFT_output_flags_4 ; clear all flags for TFT output phase 4 | |
186 clrf DM_flags_local ; clear all the various other flags, too | |
187 | |
188 ; boot tasks for all modes | |
634 | 189 call diveloop_boot ; initialize dive mode |
604 | 190 |
191 ; startup tasks for all modes | |
192 call TFT_boot ; initialize TFT (includes clear screen) | |
634 | 193 call TFT_load_dive_color_pallet ; load dive color pallet |
623 | 194 call TFT_show_divemode_mask ; display static dive mode mask |
195 call TFT_Display_FadeIn ; dim up the display | |
196 | |
634 | 197 ; arm dive start timer |
623 | 198 bcf divetime_longer_1min ; the dive has just begun |
199 btfsc FLAG_apnoe_mode ; in apnea mode? | |
200 bsf divetime_longer_1min ; YES - force dive to have lasted for longer than 1 minute already | |
201 btfsc sensor_override_active ; in simulator mode? | |
202 bsf divetime_longer_1min ; YES - force dive to have lasted for longer than 1 minute already | |
203 | |
634 | 204 ; initiate initial display outputs |
623 | 205 bsf trigger_pres_cur_changed ; flag that the pressures have changed to have all data... |
206 bsf trigger_pres_max_changed ; ... written to the display on the first output round | |
207 bsf trigger_temp_changed ; flag that the temperature has changed to have the temperature ... | |
208 ; ... written to the display on the first output round | |
209 bsf new_deco_data_avail ; flag that new deco engine results are available to have the initial data ... | |
210 ; ... written to the display on the first output round | |
211 | |
634 | 212 ; initialize the resettable average depth |
213 call resettable_average_depth_init | |
214 | |
215 ; reload and redraw last custom view | |
216 movff customview_divemode,active_customview | |
217 bsf FLAG_TFT_customview_callup | |
623 | 218 |
219 btfsc FLAG_apnoe_mode ; in apnoe mode? | |
220 bra diveloop_1 ; YES - done with initialization | |
221 btfsc FLAG_gauge_mode ; NO - in gauge mode? | |
222 bra diveloop_1 ; YES - done with initialization | |
634 | 223 bsf FLAG_TFT_display_ndl_mask ; NO - request initial display of NDL mask |
623 | 224 bsf FLAG_TFT_active_gas_divemode; - request initial display of gas and setpoint |
225 | |
226 diveloop_1: | |
227 btfsc reset_timebase ; has the ISR confirmed reset of the timebase meanwhile? | |
634 | 228 bra $-2 ; NO - not yet, loop waiting for confirmation before entering the dive loop |
229 ;bra diveloop_loop ; YES - enter the dive loop | |
230 | |
231 | |
232 ;----------------------------------------------------------------------------- | |
233 ; Dive Mode Mail Loop | |
234 ; | |
623 | 235 diveloop_loop: |
643 | 236 btfss trigger_quarter_second ; new 1/4 second? |
237 bra diveloop_loop_0 ; No - continue | |
238 | |
239 ;---- tasks any new 1/4 second ----- | |
240 bcf trigger_quarter_second ; YES - clear flag | |
241 | |
242 movlw .4 ; 62,5ms * 4 = 1/4 second | |
243 movff WREG,isr_tmr7_helper ; to make sure at least 1/4 will pass before trigger_quarter_second is re-set | |
244 | |
245 btfss press_sensor_type ; New sensor found? | |
246 bra diveloop_loop_0 ; No - continue | |
247 | |
248 ; Handle new pressure sensor every 1/4 second | |
249 btfsc ms5837_state ; =0: result of temperature is in the ADC | |
250 bra diveloop_loop_quarter_2 | |
251 call I2C_get_temp_val_MS5837 ; (Will set ms5837_state) | |
252 bra diveloop_loop_0 ; Done. | |
253 diveloop_loop_quarter_2: | |
254 call I2C_get_press_val_MS5837 ; (Will clear ms5837_state) | |
255 ;---- tasks any new 1/4 second done ----- | |
256 | |
257 diveloop_loop_0: | |
258 btfsc trigger_full_second ; new 1/1 second? | |
623 | 259 bra diveloop_loop_2 ; YES - continue with tasks every 1/1 second |
260 btfsc trigger_half_second ; NO - new 1/2 second? | |
261 bra diveloop_loop_1 ; YES - continue with tasks every 1/2 second | |
262 | |
263 ; tasks every round except every 1/1 or 1/2 second | |
264 IFDEF _compass | |
265 movlw index_compass_dm ; index of compass view | |
266 cpfseq active_customview ; in compass view? | |
267 bra diveloop_loop_11 ; NO - continue with tasks every round | |
268 call TFT_dive_compass_heading ; YES - update compass heading value | |
269 bsf FLAG_TFT_temperature ; - redraw temperature (will show resettable dive time now) | |
270 ENDIF | |
271 bra diveloop_loop_11 ; - continue tasks every round | |
272 | |
273 diveloop_loop_1: | |
274 ; tasks every 1/2 second | |
275 bcf trigger_half_second ; clear flag | |
276 btfsc FLAG_gauge_mode ; in gauge mode? | |
277 bra diveloop_loop_11 ; YES - done with 1/2 second tasks | |
278 btfsc FLAG_apnoe_mode ; NO - in apnoe mode? | |
279 bra diveloop_loop_11 ; YES - done with 1/2 second tasks | |
280 | |
281 ; tasks every 1/2 second in deco modes | |
631 | 282 call callup_deco_engine ; ##### manage and invoke the deco calculation engine ##### |
623 | 283 bra diveloop_loop_11 ; done with 1/2 second tasks |
284 | |
285 diveloop_loop_2: | |
286 ; tasks every 1/1 second (code includes tasks every 1/2 second that fall onto the full second) | |
287 bcf trigger_full_second ; clear flag for new 1/1 second | |
288 bcf trigger_half_second ; clear flag for new 1/2 second as well | |
289 | |
290 btfss trigger_temp_changed ; has the temperature changed? | |
291 bra diveloop_loop_3 ; NO - continue with tasks every 1/1 second | |
292 | |
293 bsf FLAG_TFT_temperature ; YES - display temperature | |
294 bcf trigger_temp_changed ; - clear flag | |
295 | |
296 ; "future hardware will need min temperature checked every second..." (?) | |
297 | |
298 MOVII temperature_min,sub_a ; - copy last temperature_min to sub_a | |
299 SMOVII temperature_cur,sub_b ; - ISR-safe 2 byte copy of current temperature to sub_b | |
300 call sub16 ; - sub_c = sub_a - sub_b = temperature_min - temperature | |
301 btfsc neg_flag ; - temperature > temperature_min ? | |
302 bra diveloop_loop_3 ; YES - done | |
303 MOVII sub_b,temperature_min ; NO - store new minimum temperature | |
304 | |
305 diveloop_loop_3: | |
306 ; tasks every 1/1 second | |
307 btfss trigger_pres_cur_changed ; has the pressure changed? | |
308 bra diveloop_loop_4 ; NO - continue with tasks every 1/1 second | |
309 | |
310 ; set flags | |
311 bcf trigger_pres_cur_changed ; clear flag for pressure change | |
312 bsf FLAG_TFT_depth_current ; set flag to display updated depth | |
313 | |
314 ; cache new absolute and relative pressure, ISR-safe 2 byte copies | |
315 SMOVII pressure_abs, pressure_abs_cached | |
316 SMOVII pressure_rel_cur,pressure_rel_cur_cached | |
317 | |
318 ; transfer absolute pressure to deco engine | |
319 MOVII pressure_abs_cached,int_I_pres_respiration | |
320 | |
321 ; compute absolute pressure / 10, will be used later on a couple of times | |
322 MOVII pressure_abs_cached,xA | |
323 MOVLI .10,xB | |
324 call div16x16 ; xC = xA / xB = absolute pressure / 10 | |
325 MOVII xC,pressure_abs_10 ; store result for later use | |
604 | 326 |
327 ; compute current depth in meters | |
631 | 328 MOVII pressure_rel_cur_cached,mpr ; copy current relative pressure in [mbar] to MPR |
329 call convert_pres_to_depth ; convert pressure in [mbar] to depth in [cm] | |
330 ADDLI .50,mpr ; add 50 cm for rounding up/down around 0.5 meters | |
331 MOVII mpr, xA ; copy depth in [cm] into xA | |
332 MOVLI .100,xB ; load factor 100 cm/m into xB | |
623 | 333 call div16x16 ; xC = xA / xB = depth in full meters |
631 | 334 movff xC+0,depth_meter ; store result as depth in [m], only low byte needed |
623 | 335 |
336 ; check for new max pressure | |
337 btfss trigger_pres_max_changed ; has the max pressure changed? | |
338 bra diveloop_loop_4 ; NO - continue with tasks every 1/1 second | |
339 bcf trigger_pres_max_changed ; YES - clear flag for new max pressure | |
340 bsf FLAG_TFT_depth_maximum ; - set flag for displaying new max depth | |
341 SMOVII pressure_rel_max,pressure_rel_max_cached ; - cache new max depth | |
342 | |
343 diveloop_loop_4: | |
344 ; continue tasks every 1/1 second | |
345 | |
640 | 346 IFDEF _ccr_pscr |
347 ; adjust auto-setpoint | |
348 btfsc FLAG_ccr_mode ; in CCR mode? | |
349 call check_dive_autosp ; YES - check for Auto-SP | |
350 ENDIF | |
351 | |
623 | 352 IFDEF _external_sensor |
353 btfsc FLAG_ccr_mode ; in CCR mode? | |
634 | 354 rcall calc_deko_divemode_sensor ; YES - process sensor readings |
623 | 355 btfsc FLAG_pscr_mode ; in pSCR mode? |
634 | 356 rcall calc_deko_divemode_sensor ; YES - process sensor readings |
623 | 357 ENDIF |
358 | |
631 | 359 IFDEF _cave_mode |
360 btfss cave_mode ; cave mode switched on? | |
361 bra diveloop_loop_4a ; NO - no backtracking depth recording | |
362 btfsc dive_turned ; dive turned? | |
363 bra diveloop_loop_4a ; YES - no backtracking depth recording | |
364 btfsc backtrack_entire_full ; backtracking storage entirely used up? | |
365 bra diveloop_loop_4a ; YES - no backtracking depth recording | |
366 | |
367 incf backtrack_deltatime,F ; increment time elapsed since last depth recording | |
368 movlw .59 ; load WREG with coding of last second of a minute | |
369 cpfsgt backtrack_deltatime ; time elapsed since last depth recording > 59 seconds? | |
370 bra diveloop_loop_4a ; NO - no backtracking depth recording now | |
371 rcall write_backtrack_1min_depth ; - store a backtracking depth data set | |
372 ENDIF | |
373 | |
374 diveloop_loop_4a: | |
375 ; continue tasks every 1/1 second | |
376 | |
623 | 377 btfsc FLAG_apnoe_mode ; in apnoe mode? |
378 rcall divemode_apnoe_tasks ; YES - do 1 sec. apnoe tasks | |
379 | |
380 ; display all animated (blinking) values at the beginning of each full second to have a stable timebase | |
381 rcall TFT_output_1 ; do display updates | |
382 | |
383 btfss FLAG_apnoe_mode ; in apnoe mode? | |
384 bra diveloop_loop_5 ; NO - continue with deco mode tasks every 1/1 second | |
385 | |
386 ; apnoe mode tasks every 1/1 second | |
387 call dive_customview_second ; do every second tasks for the custom view area | |
388 bra diveloop_loop_10 ; continue with common tasks every 1/1 second | |
389 | |
390 diveloop_loop_5: | |
391 ; deco mode tasks every 1/1 second | |
392 bsf FLAG_TFT_divetime ; display (new) dive time | |
393 | |
394 rcall safety_stop_show ; serve safety stop | |
395 | |
396 rcall TFT_output_2 ; do display updates | |
397 | |
398 call divemode_check_warnings ; check for warnings | |
604 | 399 |
400 IFDEF _rx_functions | |
623 | 401 btfss tr_functions_activated ; TR functions activated? |
402 bra diveloop_loop_6 ; NO - continue with deco mode tasks every 1/2 second | |
604 | 403 call get_pressure_readings ; YES - get pressure readings |
404 call configure_sac_calculation ; - set up SAC calculation | |
405 ENDIF | |
582 | 406 |
623 | 407 diveloop_loop_6: |
408 ; deco mode tasks every 1/1 second | |
409 INCI divesecs_avg_trip ; increment the resettable dive time | |
628 | 410 INCI divesecs_avg_total ; increment the total dive time |
623 | 411 |
412 btfsc FLAG_gauge_mode ; in gauge mode? | |
413 bra diveloop_loop_7 ; YES - skip deco calculations | |
414 | |
631 | 415 call callup_deco_engine ; ##### manage and invoke the deco calculation engine ##### |
623 | 416 |
417 btfsc new_deco_data_avail ; new NDL or deco data available? | |
634 | 418 call show_new_deco_data ; YES - set-up display update requests |
623 | 419 |
420 btfsc decostop_active ; in deco mode? | |
421 bsf FLAG_TFT_display_deco ; YES - update deco stop depth & time every second because of depth-dependent color-coding | |
422 | |
423 bsf FLAG_TFT_depth_current ; set flag to display depth (in next round, needed in deco modes irrespectively of a pressure change for color-coding and blinking effects) | |
424 | |
425 diveloop_loop_7: | |
426 ; deco mode tasks alternating every 2 seconds on timebase | |
427 btfss timebase_1sec ; on even second of timebase? | |
428 rcall calc_velocity ; YES - calculate velocity and display if > threshold | |
429 btfsc timebase_1sec ; on odd second of timebase? | |
430 call check_gas_best ; YES - check if a better gas cue can be given | |
431 | |
432 diveloop_loop_8: | |
433 ; deco mode tasks alternating every 2 seconds on resettable dive time | |
434 btfss divesecs_avg_trip+0,0 ; on even second of resettable dive time? | |
631 | 435 call calc_average_depth ; YES - calculate average depth |
623 | 436 btfsc divesecs_avg_trip+0,0 ; on odd second of resettable dive time? |
437 rcall safety_stop_control ; YES - exercise safety stop control | |
438 | |
439 diveloop_loop_9: | |
440 ; deco mode tasks every 1/1 second | |
628 | 441 rcall check_deco_states ; check and lock if in deco and in the deco stops region |
623 | 442 rcall TFT_output_3 ; do display updates |
443 | |
444 diveloop_loop_10: | |
445 ; common tasks every 1/1 second | |
634 | 446 rcall timeout_divemode ; check for timeout conditions |
447 call check_dive_modes_dive ; test if depth still deeper than threshold | |
623 | 448 |
449 btfsc trigger_full_minute ; has next minute begun? | |
450 rcall update_divemode60 ; YES - update clock, etc. | |
451 | |
452 btfss FLAG_oc_mode ; are we in OC mode? | |
453 bsf FLAG_TFT_active_gas_divemode; NO - have the gas and setpoint redrawn on every second to update setpoint display, animate the blinking, etc. | |
454 | |
455 btfsc dive_main_menu ; dive mode menu shown? | |
456 bsf update_menu ; YES - request update | |
457 | |
458 rcall TFT_output_4 ; do display updates | |
459 | |
460 ; tasks every round, every mode | |
461 diveloop_loop_11: | |
634 | 462 call test_switches_divemode ; check switches, in case branch into menu processor |
463 bra diveloop_loop_12 ; continue the dive loop | |
464 | |
465 | |
466 ; **** jump-in when returning from menu processor **** | |
467 ; | |
468 global divemode_option_divemenu_return | |
469 divemode_option_divemenu_return: | |
470 clrf STKPTR ; reset the stack | |
471 call menu_draw_cursor_dive ; show the cursor | |
472 bsf dive_main_menu ; set main menu is shown now | |
473 clrf active_premenu ; set pre-menu is not shown any more | |
474 bcf safety_stop_active ; set safety stop is not shown any more | |
475 movlw divemode_timeout_mainmenu ; get timeout for main menu | |
476 call restart_timeout_time ; restart the timeout | |
477 bra diveloop_loop_12 ; continue the dive loop | |
478 | |
479 | |
480 ; **** jump-in when returning from dive mode menu **** | |
481 ; | |
623 | 482 global diveloop_menu_exit |
634 | 483 diveloop_menu_exit: |
484 clrf STKPTR ; reset the stack | |
485 call divemenu_cleanup ; clean up menu area and restore dive data | |
486 ;bra diveloop_loop_12 ; continue the dive loop | |
487 | |
623 | 488 |
489 diveloop_loop_12: | |
643 | 490 bsf FLAG_TFT_active_gas_divemode; redraw gas and setpoint (eventually needed to restore the "Bailout" text) |
623 | 491 |
492 btfsc request_next_custview ; shall show next custom view? | |
634 | 493 call dive_customview_toggle ; YES - show next custom view |
623 | 494 |
631 | 495 btfsc request_gas_change ; shall change gas? |
496 call gas_switch_common ; YES | |
497 | |
498 btfsc request_gas_update ; shall update the gases? | |
499 call gas_update_common ; YES | |
0 | 500 |
623 | 501 btfsc request_toggle_GF ; shall toggle GF/aGF? |
634 | 502 call divemodemode_togglegf ; YES |
0 | 503 |
604 | 504 IFDEF _cave_mode |
631 | 505 btfsc request_cave_off_turned ; shall switch cave mode off and set the dive as turned? |
506 rcall cavemode_switch_off_turned ; YES | |
507 | |
508 btfsc request_cave_toggle ; shall toggle cave mode off/on? | |
509 rcall cavemode_toggle_onoff ; YES | |
510 | |
511 btfsc request_turn_turn ; shall turn the dive? | |
512 rcall cavemode_turndive_turn ; YES | |
513 | |
514 btfsc request_turn_toggle ; shall toggle the turn dive state? | |
515 rcall cavemode_turndive_toggle ; YES | |
516 | |
517 btfsc request_waypoint_set ; shall set a waypoint? | |
518 rcall cavemode_waypoint_set ; YES | |
519 | |
520 btfsc request_waypoint_out ; shall step one waypoint out of the cave? | |
521 rcall cavemode_waypoint_out ; YES | |
522 | |
523 btfsc request_waypoint_in ; shall step one waypoint into the cave? | |
524 rcall cavemode_waypoint_in ; YES | |
604 | 525 ENDIF |
526 | |
623 | 527 btfsc request_set_marker ; shall set a marker? |
582 | 528 call set_logbook_marker ; YES |
529 | |
623 | 530 btfsc trigger_sample_divedata ; shall store new sample of dive data? |
604 | 531 call store_dive_data ; YES - store profile data |
532 | |
533 btfss divemode ; dive finished? | |
623 | 534 goto ghostwriter_end_dive ; YES - dive finished |
604 | 535 |
536 IFDEF _screendump | |
623 | 537 btfsc screen_dump_avail ; screen dump function enabled? |
604 | 538 call TFT_dump_screen_check ; YES - check if requested and do it |
539 ENDIF | |
540 | |
634 | 541 bra diveloop_loop ; do next loop in dive mode |
542 | |
543 | |
544 ;----------------------------------------------------------------------------- | |
545 ; Dive Mode Tasks every 1/1 Minute | |
546 ; | |
547 update_divemode60: | |
548 bcf trigger_full_minute ; clear flag | |
549 | |
550 call get_battery_voltage ; get battery voltage | |
551 btfss battery_low_condition ; battery low condition detected? | |
552 bra update_divemode60_1 ; NO - skip next | |
553 movlw d'7' ; YES - set type of alarm = battery low | |
554 movwf alarm_type ; - copy to alarm register | |
555 bsf event_occured ; - set event flag | |
556 movlw .0 ; - coding of brightness level ECO | |
557 movff WREG,opt_brightness ; - set brightness to ECO | |
558 | |
559 update_divemode60_1: | |
560 ; max allowed runtime in simulator is 254 minutes in | |
561 ; order for the tissue calculation catch-up to work! | |
562 | |
563 btfss sensor_override_active ; in simulator mode? | |
564 return ; NO - done | |
565 movlw simulator_timeout_normal ; YES - set simulation timeout | |
566 IFDEF _cave_mode | |
567 TSTOSC opt_cave_mode ; - cave mode switched on? | |
568 movlw simulator_timeout_cave ; YES - replace with cave mode simulation timeout | |
569 ENDIF | |
570 cpfsgt counted_divetime_mins+0 ; - timeout? | |
571 return ; NO - done | |
572 IFDEF _DEBUG | |
573 return ; YES - but we do not care in debug mode... | |
574 ELSE | |
575 goto divemode_option_sim_quit ; YES - set depth to 0 m and return | |
576 ENDIF | |
577 | |
578 | |
579 ;----------------------------------------------------------------------------- | |
580 ; Helper Function - set-up Display Update Requests | |
581 ; | |
582 show_new_deco_data: | |
583 bcf new_deco_data_avail ; reset flag for new NDL or deco data available | |
584 movff char_O_deco_info,WREG ; get the deco info vector | |
585 btfsc WREG,deco_stops_norm ; deco stops found? | |
586 bra show_new_deco_data_deco ; YES - in deco | |
587 ;bra show_new_deco_data_ndl ; NO - within NDL | |
588 | |
589 show_new_deco_data_ndl: ; within NDL | |
590 btfsc decostop_active ; been in deco mode before? | |
591 bsf FLAG_TFT_clear_deco_data ; YES - clear old deco data | |
592 btfsc decostop_active ; been in deco mode before? | |
593 bsf FLAG_TFT_display_ndl_mask ; YES - display NDL data mask | |
594 bcf decostop_active ; clear flag for been in deco mode before | |
595 bsf FLAG_TFT_display_ndl ; display NDL time | |
596 return ; done | |
597 | |
598 show_new_deco_data_deco: ; in deco | |
599 btfss decostop_active ; been in deco mode before? | |
600 bsf FLAG_TFT_clear_deco_data ; NO - clear old NDL data | |
601 btfss decostop_active ; been in deco mode before? | |
602 bsf FLAG_TFT_display_deco_mask ; NO - display deco data mask | |
603 bsf decostop_active ; set flag for being in deco mode | |
604 bsf FLAG_TFT_display_tts ; display TTS time (display of stop data is managed separately) | |
605 return ; done | |
606 | |
607 | |
608 ;----------------------------------------------------------------------------- | |
609 ; Helper Function - do all Phase 1 Display Outputs | |
610 ; | |
623 | 611 TFT_output_1: ; every second - before deco calculations, all mode |
612 btfsc FLAG_TFT_clear_apnoe_surface ; shall clear apnoe mode surface data from screen? | |
613 call TFT_clear_apnoe_surface ; YES - clear apnoe mode surface data from screen | |
614 | |
615 btfsc FLAG_TFT_depth_current ; shall show depth? | |
616 call TFT_show_depth ; YES - display depth | |
617 btfsc FLAG_TFT_depth_maximum ; shall show max depth? | |
618 call TFT_show_max_depth ; YES - display max depth | |
619 btfsc FLAG_TFT_active_gas_divemode ; shall show active gas and dive mode? | |
620 call TFT_show_active_gas_divemode ; YES - display gas, setpoint and mode | |
631 | 621 btfsc FLAG_TFT_temperature ; shall show temperature? |
622 call TFT_show_temp_divemode ; YES - display temperature (or resettable dive time) | |
623 | 623 |
624 btfsc FLAG_TFT_apnoe_surface_time ; shall show apnoe mode surface time? | |
625 call TFT_show_apnoe_surface ; YES - show apnoe mode surface time | |
626 btfsc FLAG_TFT_depth_maximum_apnoe ; shall show max. depth of last dive? | |
627 call TFT_show_apnoe_max_depth ; YES - show max. depth of last dive | |
628 btfsc FLAG_TFT_apnoe_divetime ; shall show apnoe dive time? | |
629 call TFT_show_apnoe_times ; YES - show apnoe dive time? | |
630 | |
631 clrf TFT_output_flags_1 ; mark all TFT updates done | |
632 return ; done | |
633 | |
634 | 634 |
635 ;----------------------------------------------------------------------------- | |
636 ; Helper Function - do all Phase 2 Display Outputs | |
637 ; | |
623 | 638 TFT_output_2: ; every second - before deco calculations, deco modes only |
639 btfsc FLAG_TFT_divemode_mask ; shall re-draw mask? | |
640 call TFT_show_divemode_mask ; YES - re-draw mask | |
641 btfsc FLAG_TFT_divetime ; shall show dive time? | |
642 call TFT_show_divetime ; YES - show dive time | |
643 btfsc FLAG_TFT_safety_stop_show ; shall show safety stop? | |
644 call TFT_safety_stop_show ; YES - show safety stop | |
645 btfsc FLAG_TFT_safety_stop_clear ; shall clear safety stop? | |
646 call TFT_safety_stop_clear ; YES - clear safety stop | |
647 clrf TFT_output_flags_2 ; mark all TFT updates done | |
648 goto dive_customview_second ; do every-second tasks for the custom view area (in sync with the dive time) and return | |
649 | |
634 | 650 |
651 ;----------------------------------------------------------------------------- | |
652 ; Helper Function - do all Phase 3 Display Outputs | |
653 ; | |
623 | 654 TFT_output_3: ; every second - after deco calculations, deco modes only |
655 btfsc FLAG_TFT_clear_deco_data ; shall clear deco data (NDL or stop & TTS)? | |
656 call TFT_clear_deco_data ; YES - clear deco data (NDL or stop & TTS) | |
657 btfsc FLAG_TFT_display_ndl_mask ; shall show NDL mask? | |
658 call TFT_show_ndl_mask ; YES - show NDL mask | |
659 btfsc FLAG_TFT_display_ndl ; shall show NDL data? | |
660 call TFT_show_ndl ; YES - show NDL data | |
661 btfsc FLAG_TFT_display_deco_mask ; shall show deco mask? | |
662 call TFT_show_deco_mask ; YES - show deco mask | |
663 btfsc FLAG_TFT_display_deco ; shall show deco stop? | |
664 call TFT_show_deco ; YES - show deco stop | |
665 btfsc FLAG_TFT_display_tts ; shall show deco TTS? | |
666 call TFT_show_tts ; YES - show deco TTS | |
667 clrf TFT_output_flags_3 ; mark all TFT updates done | |
668 return ; done | |
669 | |
634 | 670 |
671 ;----------------------------------------------------------------------------- | |
672 ; Helper Function - do all Phase 4 Display Outputs | |
673 ; | |
623 | 674 TFT_output_4: ; every second - after deco calculations, all modes |
631 | 675 btfsc FLAG_TFT_customview_callup ; shall show a custom view? |
676 call dive_customview_callup ; YES - show a custom view | |
623 | 677 btfsc FLAG_TFT_velocity_show ; shall show vertical velocity? |
631 | 678 call TFT_velocity_show ; YES - show vertical velocity |
623 | 679 btfsc FLAG_TFT_velocity_clear ; shall clear vertical velocity? |
631 | 680 call TFT_velocity_clear ; YES - clear vertical velocity |
623 | 681 btfsc FLAG_TFT_sign_show ; shall show the advice / attention / warning sign? |
682 call TFT_divemode_sign_show ; YES - show sign | |
683 btfsc FLAG_TFT_sign_clear ; shall clear the advice / attention / warning sign? | |
684 call TFT_divemode_sign_clear ; YES - clear sign | |
685 btfsc FLAG_TFT_message_clear_both ; shall clear all messages? | |
686 call TFT_clear_message_window ; YES - clear complete message area | |
687 btfsc FLAG_TFT_message_clear_2nd ; shall clear 2nd row of message area? | |
688 call TFT_clear_message_window_row2 ; YES - clear 2nd row of message area | |
689 clrf TFT_output_flags_4 ; mark all TFT updates done | |
690 return ; done | |
582 | 691 |
634 | 692 |
693 ;----------------------------------------------------------------------------- | |
694 ; Apnoe Mode Tasks | |
695 ; | |
628 | 696 divemode_apnoe_tasks: ; 1 sec. apnoe tasks |
697 bsf FLAG_TFT_apnoe_divetime ; show apnoe dive times (current/last dive and total) | |
698 btfsc apnoe_at_surface ; at the surface? | |
699 bra divemode_apnoe_tasks_surf ; YES - at the surface | |
700 ;bra divemode_apnoe_tasks_dive ; NO - in dive phase | |
701 | |
702 divemode_apnoe_tasks_dive: ; apnoe mode, submerged | |
703 btfss apnoe_new_dive ; new dive begun? | |
704 return ; NO - done | |
705 bcf apnoe_new_dive ; YES - clear flag | |
706 bsf FLAG_TFT_clear_apnoe_surface ; - clear apnoe mode surface data from screen | |
707 return ; - done | |
708 | |
709 divemode_apnoe_tasks_surf: ; apnoe mode, at the surface | |
710 bsf FLAG_TFT_apnoe_surface_time ; show apnoe mode surface time | |
623 | 711 ; TODO: these outputs would need to be done only once after surfacing... |
628 | 712 bsf FLAG_TFT_depth_maximum_apnoe ; show max. depth of last dive |
713 bsf FLAG_TFT_depth_maximum ; show max. depth of all dives | |
714 ;bra apnoe_calc_maxdepth ; calculate overall max. depth and return | |
623 | 715 |
0 | 716 |
634 | 717 ;----------------------------------------------------------------------------- |
718 ; Helper Function - calculate Apnoe Mode overall maximum Depth | |
719 ; | |
0 | 720 global apnoe_calc_maxdepth |
721 apnoe_calc_maxdepth: | |
623 | 722 MOVII apnoe_max_pressure, sub_a ; get max depth from all dives to far |
723 MOVII pressure_rel_max_cached,sub_b ; get max depth of last dive | |
724 call cmpU16 ; sub_a - sub_b = apnoe_max_pressure - pressure_rel_max_cached | |
725 btfss neg_flag ; last dive deeper than all the others before? | |
726 return ; NO - done | |
727 MOVII pressure_rel_max_cached,apnoe_max_pressure ; YES - store new overall max depth | |
728 return ; - done | |
0 | 729 |
634 | 730 |
731 ;----------------------------------------------------------------------------- | |
732 ; Manage and invoke the Deco Calculation Engine | |
733 ; | |
734 callup_deco_engine: | |
735 | |
631 | 736 ; Any reconfiguration done here only affects the deco calculation (prediction), not the |
737 ; settings for the calculations done on the real tissues. The later ones are only altered | |
738 ; in case of a gas change, in case of a real bailout, or in case a switchback to setpoint | |
739 ; or sensor is done. | |
740 ; On event of a gas change, a diluent change, a real bailout, or a switchback, the settings | |
741 ; for the deco calculation are also automatically changed to match with the settings for the | |
742 ; real tissues. This is all done in the function 'gas_switch_common' which is triggered by | |
743 ; the flag 'request_gas_change'. | |
744 | |
745 ; Deco Engine Calculation Schedules: | |
746 ; | |
634 | 747 ; Schedule Dive Mode Bailout fTTS Gas Needs Plan Deco Mode calculated Functions |
748 ; ----------------------------------------------------------------------------------------------------- | |
631 | 749 ; |
634 | 750 ; 1a) OC no no (yes) norm OC TTS, CNS, deco plan, (gas needs) |
751 ; no alt plan | |
560 | 752 ; |
634 | 753 ; 1b) OC no YES (yes) norm OC TTS, CNS, deco plan |
754 ; alt OC fTTS, fCNS, (gas needs) | |
631 | 755 ; |
634 | 756 ; 2a) Loop no no no norm Loop TTS, CNS, deco plan |
757 ; no alt plan | |
631 | 758 ; |
634 | 759 ; 2b) Loop no yes no norm Loop TTS, CNS, deco plan |
760 ; alt Loop fTTS, fCNS | |
631 | 761 ; |
634 | 762 ; 2c) Loop no (yes) YES norm Loop TTS, CNS, deco plan |
763 ; alt OC fTTS*, fCNS*, gas needs <- "what if" BAILOUT | |
631 | 764 ; |
634 | 765 ; 3) Loop YES n/a (yes) norm OC TTS, deco plan, (gas needs) <- real BAILOUT |
766 ; no alt plan | |
767 ; _____________________________________________________________________________________________________ | |
768 ; norm: normal plan, alt: alternative plan, (): optional, n/a: not applicable | |
769 ; * the fTTS time is set to zero when in cave mode and the dive is in turned state | |
770 | |
604 | 771 |
772 ; get working copies of char_O_main_status and char_O_deco_status | |
773 movff char_O_main_status,hi ; get char_O_main_status into hi | |
774 movff char_O_deco_status,lo ; get char_O_deco_status into lo | |
775 | |
776 ; check state of deco calculations | |
631 | 777 btfsc request_restart_engine ; restart of the deco engine requested? |
778 bra calc_deco_engine_restart ; YES - start a new normal plan | |
779 btfsc lo,DECO_COMPLETED_NORM ; NO - finished calculations for normal plan? | |
780 bra calc_deco_engine_alt ; YES - eventually do an alternative plan next | |
781 btfsc lo,DECO_COMPLETED_ALT ; NO - finished calculations for alternative plan? | |
782 bra calc_deco_engine_norm ; YES - do a normal plan next | |
783 bra calc_deco_engine_exec ; NO - continue executing current calculation | |
784 | |
785 calc_deco_engine_restart: | |
786 bcf request_restart_engine ; clear request flag | |
787 bcf lo,DECO_COMPLETED_NORM ; clear completion flag from normal plan if applicable | |
788 ;bra calc_deco_engine_norm ; continue with calculating a normal plan | |
789 | |
634 | 790 |
631 | 791 ; ---- normal plans ---- |
634 | 792 ; |
623 | 793 calc_deco_engine_norm: |
631 | 794 bcf lo,DECO_COMPLETED_ALT ; clear completion flag from alternative plan |
795 IFDEF _ccr_pscr | |
796 btfsc bailout_mode ; in real bailout? | |
797 bra calc_deco_engine_norm_3 ; YES - configure real bailout schedule | |
798 btfss FLAG_oc_mode ; in OC dive mode? | |
799 bra calc_deco_engine_norm_2 ; NO - configure loop schedules | |
800 ;bra calc_deco_engine_norm_1 ; YES - configure OC schedules | |
604 | 801 ENDIF |
802 | |
631 | 803 calc_deco_engine_norm_1: |
804 ; normal OC schedules | |
805 TSTOSC char_I_extra_time ; delay mode activated? | |
806 bra calc_deco_engine_norm_1b ; YES - schedule 1b in normal plan | |
807 ;bra calc_deco_engine_norm_1a ; NO - schedule 1a in normal plan | |
808 | |
809 calc_deco_engine_norm_1a: | |
810 ; normal schedule 1a: OC with optional gas needs | |
811 ; bcf lo,DECO_BAILOUT_FLAG ; switch off bailout mode (will never be activated in this plan) | |
812 ; bcf lo,DECO_DELAY_FLAG ; switch off delay mode (will never be activated in this plan) | |
813 ; bcf hi,DECO_VOLUME_FLAG ; switch off gas needs calculation by default (if on, will always be on) | |
814 TSTOSC opt_calc_gasvolume ; shall calculate gas needs? | |
815 bsf hi,DECO_VOLUME_FLAG ; YES - switch on gas needs calculation | |
816 bra calc_deco_engine_norm_start ; start deco engine in normal plan | |
817 | |
818 calc_deco_engine_norm_1b: | |
819 ; normal schedule 1b: OC without delay and gas needs | |
820 ; bcf lo,DECO_BAILOUT_FLAG ; switch off bailout mode (will never be activated in this plan) | |
821 bcf lo,DECO_DELAY_FLAG ; switch off delay mode | |
822 bcf hi,DECO_VOLUME_FLAG ; switch off gas needs calculation | |
823 bra calc_deco_engine_norm_start ; start deco engine in normal plan | |
824 | |
623 | 825 IFDEF _ccr_pscr |
631 | 826 calc_deco_engine_norm_2: |
827 ; normal loop schedules | |
828 TSTOSC opt_calc_gasvolume ; gas needs calculation activated? | |
829 bra calc_deco_engine_norm_2c ; YES - schedule 2c in normal plan | |
830 ;bra calc_deco_engine_norm_2ab ; NO - schedules 2a and 2b in normal plan are identical | |
831 | |
832 calc_deco_engine_norm_2ab: | |
833 ; normal schedule 2a & 2b: loop without anything | |
834 bcf lo,DECO_BAILOUT_FLAG ; switch off bailout mode (may return from real bailout) | |
835 ; bcf hi,DECO_VOLUME_FLAG ; switch off gas needs calculation (will never be activated in this plans) | |
836 bcf lo,DECO_DELAY_FLAG ; switch off delay mode (may have been set in alt. plan 2b) | |
837 bra calc_deco_engine_norm_start ; start deco engine in normal plan | |
838 | |
839 calc_deco_engine_norm_2c: | |
840 ; normal schedule 2c: loop with switch-back from simulated bailout | |
841 ; switch to CCR/pSCR | |
842 movf active_dil,W ; get current diluent | |
843 call deco_setup_cc_diluents_pre ; set up deco calculation in CCR/pSCR mode with diluents | |
844 calc_deco_engine_norm_2c_XX: | |
845 bcf lo,DECO_BAILOUT_FLAG ; switch off bailout mode (may return from real bailout) | |
846 bcf hi,DECO_VOLUME_FLAG ; switch off gas needs calculation | |
847 bcf lo,DECO_DELAY_FLAG ; switch off delay mode | |
848 bra calc_deco_engine_norm_start ; start deco engine in normal plan | |
849 | |
850 calc_deco_engine_norm_3: | |
851 ; real bailout schedule | |
852 bcf lo,DECO_DELAY_FLAG ; switch off delay mode | |
853 bcf hi,DECO_VOLUME_FLAG ; switch off gas needs calculation by default | |
854 TSTOSC opt_calc_gasvolume ; shall calculate gas needs? | |
855 bsf hi,DECO_VOLUME_FLAG ; YES - switch on gas needs calculation | |
856 bsf lo,DECO_BAILOUT_FLAG ; switch on bailout mode | |
857 ;bra calc_deco_engine_norm_start ; start deco engine in normal plan | |
858 ENDIF ; _ccr_pscr | |
859 | |
860 calc_deco_engine_norm_start: | |
861 bsf lo,DECO_START_NORM ; calculate a normal plan | |
623 | 862 bra calc_deco_engine_start ; start deco engine |
863 | |
634 | 864 |
631 | 865 ; ---- alternative plans ---- |
634 | 866 ; |
623 | 867 calc_deco_engine_alt: |
631 | 868 bcf lo,DECO_COMPLETED_NORM ; clear completion flag from normal plan |
869 IFDEF _ccr_pscr | |
870 btfsc bailout_mode ; in real bailout? | |
871 bra calc_deco_engine_norm_3 ; YES - schedule 3 has no alternative plan | |
872 btfss FLAG_oc_mode ; in OC dive mode? | |
873 bra calc_deco_engine_alt_2 ; NO - loop schedules | |
874 ;bra calc_deco_engine_alt_1 ; YES - OC schedules | |
875 ENDIF ; _ccr_pscr | |
623 | 876 |
877 calc_deco_engine_alt_1: | |
631 | 878 ; alternative OC schedules |
879 TSTOSS char_I_extra_time ; delay mode activated? | |
880 bra calc_deco_engine_norm_1a ; NO - schedule 1a has no alternative plan | |
604 | 881 IFDEF _cave_mode |
631 | 882 btfsc dive_turned ; YES - in cave mode and dive turned? |
883 bra calc_deco_engine_norm_1a ; YES - suppress delay mode -> do schedule 1a in normal plan | |
604 | 884 ENDIF |
631 | 885 ;bra calc_deco_engine_alt_1b ; NO - do schedule 1b in alternative plan |
886 | |
887 calc_deco_engine_alt_1b: | |
888 ; alternative schedule 1b: OC with delay and optional gas needs | |
889 ; bcf lo,DECO_BAILOUT_FLAG ; switch off bailout mode (will never be activated in this plan) | |
890 ; bcf hi,DECO_VOLUME_FLAG ; switch off gas needs calculation by default (comes in switched off state) | |
891 TSTOSC opt_calc_gasvolume ; shall calculate gas needs? | |
892 bsf hi,DECO_VOLUME_FLAG ; YES - switch on gas needs calculation | |
893 bsf lo,DECO_DELAY_FLAG ; switch on delay mode | |
894 bra calc_deco_engine_alt_start ; start deco engine in alternative plan | |
895 | |
896 IFDEF _ccr_pscr | |
623 | 897 calc_deco_engine_alt_2: |
631 | 898 ; alternative loop schedules |
899 TSTOSC opt_calc_gasvolume ; gas needs calculation activated? | |
900 bra calc_deco_engine_alt_2c ; YES - 2c in alternative plan | |
901 TSTOSS char_I_extra_time ; NO - delay mode activated? | |
902 bra calc_deco_engine_norm_2ab ; NO - schedule 2a has no alternative plan | |
903 ;bra calc_deco_engine_alt_2b ; YES - schedule 2b in alternative plan | |
904 | |
905 calc_deco_engine_alt_2b: | |
906 ; alternative schedule 2b: loop with delay | |
907 ; bcf lo,DECO_BAILOUT_FLAG ; switch off bailout mode (will be deactivated in normal plan) | |
908 ; bcf hi,DECO_VOLUME_FLAG ; switch off gas needs calculation (will never be activated in this plan) | |
909 bsf lo,DECO_DELAY_FLAG ; switch on delay mode | |
910 bra calc_deco_engine_alt_start ; start deco engine in normal plan | |
911 | |
912 calc_deco_engine_alt_2c: | |
913 ; alternative schedule 2c: simulated bailout (if possible) | |
914 decf best_gas_number,W ; get best gas number -1 into WREG. If not available, WREG will be 255 now. If not computed yet, WREG will be 254 now. | |
915 btfsc WREG,7 ; WREG < 128 (a bailout gas is available)? | |
916 bra calc_deco_engine_alt_2c_XX ; NO - no bailout plan possible because no bailout gas available to switch to | |
917 movf best_gas_number,W ; YES - get number of best gas into WREG | |
918 call deco_setup_oc_gases_pre ; - set up deco calculation in OC mode with OC gases | |
919 ; bcf lo,DECO_DELAY_FLAG ; - switch off delay mode by default (comes in switched off state) | |
920 TSTOSC char_I_extra_time ; - delay mode activated? | |
921 bsf lo,DECO_DELAY_FLAG ; YES - switch on delay mode | |
604 | 922 IFDEF _cave_mode |
631 | 923 btfsc dive_turned ; in cave mode and dive turned? |
924 bcf lo,DECO_DELAY_FLAG ; YES - suppress delay mode | |
604 | 925 ENDIF |
631 | 926 bsf lo,DECO_BAILOUT_FLAG ; - switch on bailout mode |
927 bsf hi,DECO_VOLUME_FLAG ; - switch on gas needs calculation | |
928 bra calc_deco_engine_alt_start ; - start deco engine in alternative plan | |
929 calc_deco_engine_alt_2c_XX: | |
604 | 930 call inval_alternative_plan_data ; invalidate all alternative (bailout) plan data because they are not applicable any more |
631 | 931 bra calc_deco_engine_norm_start ; continue calculating as normal plan |
932 ENDIF ; _ccr_pscr | |
933 | |
934 calc_deco_engine_alt_start: | |
935 bsf lo,DECO_START_ALT ; calculate an alternative plan | |
936 ;bra calc_deco_engine_start ; start deco engine | |
937 | |
634 | 938 |
631 | 939 ; ---- start deco engine ---- |
634 | 940 ; |
623 | 941 calc_deco_engine_start: |
631 | 942 IFDEF _cave_mode |
943 bcf hi,DECO_CAVE_MODE ; deactivate cave mode by default | |
944 btfss cave_mode ; cave mode switched on? | |
945 bra calc_deco_engine_start_1 ; NO - keep deactivated, no backtracking depth recording | |
946 bsf hi,DECO_CAVE_MODE ; YES - activate cave mode | |
947 btfss dive_turned ; - dive turned? | |
948 call write_backtrack_deltatime ; NO - update current delta time | |
949 ENDIF | |
950 calc_deco_engine_start_1: | |
604 | 951 movff hi,char_O_main_status ; write-back char_O_main_status to deco engine interface |
560 | 952 movff lo,char_O_deco_status ; write-back char_O_deco_status to deco engine interface |
0 | 953 |
631 | 954 calc_deco_engine_exec: |
623 | 955 ; +++++++++++++++++++++++++++++++++++++ |
634 | 956 bsf tmr5_preemtion_allowed ; grant preemption allowance for timer 5 (deco engine) |
623 | 957 call deco_calc_hauptroutine ; invoke the deco engine (C-code) |
958 banksel common ; back to bank common | |
634 | 959 bcf tmr5_preemtion_allowed ; revoke preemption allowance |
623 | 960 ; +++++++++++++++++++++++++++++++++++++ |
961 | |
631 | 962 ifdef _debug_output |
623 | 963 call TFT_debug_output ; debug output of scheduling performance data |
631 | 964 endif |
604 | 965 |
966 ; check if new calculation results for normal plan mode are available | |
623 | 967 movff char_O_deco_status,WREG ; get deco status of deco engine |
968 btfsc WREG,DECO_COMPLETED_NORM ; new calculation results for normal plan available? | |
969 bsf new_deco_data_avail ; YES - set flag for new NDL or deco data available | |
631 | 970 |
634 | 971 return ; done |
972 | |
623 | 973 |
631 | 974 IFDEF _ccr_pscr |
623 | 975 IFDEF _external_sensor |
0 | 976 |
634 | 977 ;----------------------------------------------------------------------------- |
978 ; Process Sensor Readings | |
979 ; | |
560 | 980 global calc_deko_divemode_sensor |
981 calc_deko_divemode_sensor: | |
634 | 982 btfsc ext_input_optical ; do we have an optical interface? |
983 bra calc_deko_divemode_sensor_opt ; YES - process received data | |
984 btfss ext_input_s8_ana ; NO - do we have a S8/analog interface? | |
985 return ; NO - nothing to do, done | |
986 TSTOSS opt_s8_mode ; YES - shall use S8 interface? | |
987 bra calc_deko_divemode_sensor_ana ; - NO - use analog interface | |
988 ;bra calc_deko_divemode_sensor_s8 ; YES - use S8 interface | |
989 | |
990 calc_deko_divemode_sensor_s8: | |
991 btfss trigger_S8_data_update ; new data frame available? | |
992 bra calc_deko_divemode_sensor_common; NO - use old values | |
993 bcf trigger_S8_data_update ; YES - clear update flag | |
994 call compute_mvolts_from_rawdata ; - compute mV values from digital data | |
995 bra calc_deko_divemode_sensor_common; - continue with common part | |
996 | |
583 | 997 calc_deko_divemode_sensor_opt: |
634 | 998 ; sensor1_ppO2, sensor2_ppO2 and sensor3_ppO2 are already filled in ISR |
999 btfss sensor1_active ; check HUD status data and eventually clear use_O2_sensorX | |
1000 bcf use_O2_sensor1 ; ... | |
1001 btfss sensor2_active ; ... | |
1002 bcf use_O2_sensor2 ; ... | |
1003 btfss sensor3_active ; ... | |
1004 bcf use_O2_sensor3 ; ... | |
1005 bra check_sensor_avg ; continue with calculating sensor average | |
1006 | |
1007 calc_deko_divemode_sensor_ana: | |
1008 call get_analog_inputs ; get the analog voltages and continue with the common part | |
1009 ;bra calc_deko_divemode_sensor_common; continue with common part | |
560 | 1010 |
1011 calc_deko_divemode_sensor_common: | |
634 | 1012 |
604 | 1013 ; Check each sensor if it is calibrated and if its mV value is within min_mv and max_mv limits. |
1014 ; If ok: compute o2_ppo2_sensorX = o2_mv_sensorX * opt_x_sX / 1000 | |
582 | 1015 ; If not ok: reset o2_ppo2_sensorX, reset use_O2_sensorX and show the customview 1 in case the sensor was ok before |
0 | 1016 |
604 | 1017 ; check sensor 1 |
582 | 1018 btfss sensor1_calibrated_ok ; check if sensor is usable at all |
1019 bra check_sensor_1_fail ; NO - handle it as failed | |
634 | 1020 SMOVII sensor1_mv,sub_a ; YES - load sensor mV value |
1021 | |
604 | 1022 ; check min threshold |
634 | 1023 rcall check_min_threshold ; check if sensor mV is outside minimum |
582 | 1024 btfsc neg_flag ; check if result is negative, i.e. sensor_mv < min_mv |
1025 bra check_sensor_1_fail ; YES - declare sensor as failed | |
634 | 1026 |
604 | 1027 ; check max_threshold |
634 | 1028 rcall check_max_threshold ; check if sensor mV is outside maximum |
582 | 1029 btfss neg_flag ; check if result is negative, i.e. sensor_mv < max_mv |
1030 bra check_sensor_1_fail ; NO - declare sensor as failed | |
634 | 1031 |
604 | 1032 ; check HUD data, if available |
582 | 1033 btfss hud_connection_ok ; check if there is a HUD connected |
1034 bra check_sensor_1_ok ; NO - all checks done then and positive | |
604 | 1035 btfss sensor1_active ; YES - HUD status ok? |
1036 bra check_sensor_1_fail ; NO - HUD reports a fail | |
634 | 1037 |
560 | 1038 check_sensor_1_ok: |
623 | 1039 ; sensor1_ppO2 = sensor1_mv:2 * opt_x_s1:2 / 1000 |
634 | 1040 SMOVII sensor1_mv,xA ; get sensor mV into xA |
1041 MOVII opt_x_s1, xB ; get calibration factor into xB | |
1042 rcall compute_ppo2_helper ; compute ppO2 | |
623 | 1043 movff xC+0,sensor1_ppO2 ; result in 0.01 bar |
634 | 1044 bcf attn_det_sensor1_lost ; clear attention |
1045 bcf shown_sensor1_fail ; re-arm custom-view show-up | |
582 | 1046 bra check_sensor_2 ; continue with next sensor |
634 | 1047 |
560 | 1048 check_sensor_1_fail: |
634 | 1049 clrf WREG ; set ppO2 reading to zero |
1050 movff WREG,sensor1_ppO2 ; ... | |
1051 btfsc use_O2_sensor1 ; check if sensor is in use | |
1052 bsf attn_det_sensor1_lost ; YES - set an attention | |
582 | 1053 bcf use_O2_sensor1 ; revoke sensor from usage |
604 | 1054 |
634 | 1055 check_sensor_2: |
1056 ; check sensor 2 | |
582 | 1057 btfss sensor2_calibrated_ok ; check if sensor is usable at all |
1058 bra check_sensor_2_fail ; NO - handle it as failed | |
634 | 1059 SMOVII sensor2_mv,sub_a ; YES - load sensor mV value |
1060 | |
604 | 1061 ; check min threshold |
634 | 1062 rcall check_min_threshold ; check if sensor mV is outside minimum |
582 | 1063 btfsc neg_flag ; check if result is negative, i.e. sensor_mv < min_mv |
1064 bra check_sensor_2_fail ; YES - declare sensor as failed | |
634 | 1065 |
604 | 1066 ; check max_threshold |
634 | 1067 rcall check_max_threshold ; check if sensor mV is outside maximum |
582 | 1068 btfss neg_flag ; check if result is nagative, i.e. sensor_mv < max_mv |
1069 bra check_sensor_2_fail ; NO - declare sensor as failed | |
634 | 1070 |
604 | 1071 ; check HUD data, if available |
582 | 1072 btfss hud_connection_ok ; check if there is a HUD connected |
1073 bra check_sensor_2_ok ; NO - all checks done then and positive | |
604 | 1074 btfss sensor2_active ; YES - HUD status ok? |
1075 bra check_sensor_2_fail ; NO - HUD reports a fail | |
634 | 1076 |
560 | 1077 check_sensor_2_ok: |
623 | 1078 ; sensor2_ppO2 = sensor2_mv:2 * opt_x_s2:2 / 1000 |
634 | 1079 SMOVII sensor2_mv,xA ; get sensor mV into xA |
1080 MOVII opt_x_s2, xB ; get calibration factor into xB | |
1081 rcall compute_ppo2_helper ; compute ppO2 | |
623 | 1082 movff xC+0,sensor2_ppO2 ; result in 0.01 bar |
634 | 1083 bcf attn_det_sensor2_lost ; clear attention |
1084 bcf shown_sensor2_fail ; re-arm custom-view show-up | |
582 | 1085 bra check_sensor_3 ; continue with next sensor |
634 | 1086 |
560 | 1087 check_sensor_2_fail: |
634 | 1088 clrf WREG ; set ppO2 reading to zero |
1089 movff WREG,sensor2_ppO2 ; ... | |
1090 btfsc use_O2_sensor2 ; check if sensor is in use | |
1091 bsf attn_det_sensor2_lost ; YES - set an attention | |
582 | 1092 bcf use_O2_sensor2 ; revoke sensor from usage |
604 | 1093 |
634 | 1094 check_sensor_3: |
1095 ; check sensor 3 | |
582 | 1096 btfss sensor3_calibrated_ok ; check if sensor is usable at all |
1097 bra check_sensor_3_fail ; NO - handle it as failed | |
634 | 1098 SMOVII sensor3_mv,sub_a ; YES - load sensor mV value |
1099 | |
604 | 1100 ; check min threshold |
634 | 1101 rcall check_min_threshold ; check if sensor mV is outside minimum |
582 | 1102 btfsc neg_flag ; check if result is negative, i.e. sensor_mv < min_mv |
1103 bra check_sensor_3_fail ; YES - declare sensor as failed | |
634 | 1104 |
604 | 1105 ; check max threshold |
634 | 1106 rcall check_max_threshold ; check if sensor mV is outside maximum |
582 | 1107 btfss neg_flag ; check if result is negative, i.e. sensor_mv < max_mv |
1108 bra check_sensor_3_fail ; NO - declare sensor as failed | |
634 | 1109 |
604 | 1110 ; check HUD data, if available |
582 | 1111 btfss hud_connection_ok ; check if there is a HUD connected |
1112 bra check_sensor_3_ok ; NO - all checks done then and positive | |
604 | 1113 btfss sensor3_active ; YES - HUD status ok? |
1114 bra check_sensor_3_fail ; NO - HUD reports a fail | |
634 | 1115 |
560 | 1116 check_sensor_3_ok: |
623 | 1117 ; sensor3_ppO2 = sensor3_mv:2 * opt_x_s1:2 / 1000 |
634 | 1118 SMOVII sensor3_mv,xA ; get sensor mV into xA |
1119 MOVII opt_x_s3, xB ; get calibration factor into xB | |
1120 rcall compute_ppo2_helper ; compute ppO2 | |
623 | 1121 movff xC+0,sensor3_ppO2 ; result in 0.01 bar |
634 | 1122 bcf attn_det_sensor3_lost ; clear attention |
1123 bcf shown_sensor3_fail ; re-arm custom-view show-up | |
1124 bra check_sensor_avg ; continue with calculating sensor average | |
1125 | |
560 | 1126 check_sensor_3_fail: |
634 | 1127 clrf WREG ; set ppO2 reading to zero |
1128 movff WREG,sensor3_ppO2 ; ... | |
1129 btfsc use_O2_sensor3 ; check if sensor is in use | |
1130 bsf attn_det_sensor3_lost ; YES - set an attention | |
582 | 1131 bcf use_O2_sensor3 ; revoke sensor from usage |
604 | 1132 |
634 | 1133 check_sensor_avg: |
1134 ; calculate sensor average | |
623 | 1135 btfss divemode ; in dive mode? |
1136 return ; NO - done here if not in dive mode | |
560 | 1137 |
634 | 1138 ; compute sensor_setpoint = average of all o2_ppo2_sensorX of |
1139 ; those sensors that have use_O2_sensorX == true | |
1140 | |
1141 CLRI xA ; clear sum of sensor values | |
1142 CLRI xB ; clear number of active sensors found | |
1143 | |
1144 check_sensor_avg_1: | |
1145 btfss use_O2_sensor1 ; sensor 1 active? | |
1146 bra check_sensor_avg_2 ; NO | |
1147 movff sensor1_ppO2,WREG ; YES - get ppO2 | |
1148 addwf xA+0,F ; - add into xA:2 | |
1149 movlw .0 ; - ... | |
1150 addwfc xA+1,F ; - ... | |
1151 incf xB+0,F ; - add a sensor | |
1152 | |
1153 check_sensor_avg_2: | |
1154 btfss use_O2_sensor2 ; sensor 2 active? | |
1155 bra check_sensor_avg_3 ; NO | |
1156 movff sensor2_ppO2,WREG ; YES - get ppO2 | |
1157 addwf xA+0,F ; - add into xA:2 | |
1158 movlw .0 ; - ... | |
1159 addwfc xA+1,F ; - ... | |
1160 incf xB+0,F ; - add a sensor | |
1161 | |
1162 check_sensor_avg_3: | |
1163 btfss use_O2_sensor3 ; sensor 3 active? | |
1164 bra check_sensor_avg_compute ; NO | |
1165 movff sensor3_ppO2,WREG ; YES - get ppO2 | |
1166 addwf xA+0,F ; - add into xA:2 | |
1167 movlw .0 ; - ... | |
1168 addwfc xA+1,F ; - ... | |
1169 incf xB+0,F ; add a sensor | |
1170 | |
1171 check_sensor_avg_compute: | |
604 | 1172 ; divide sum of sensor values by number of active sensors found |
634 | 1173 clrf xC+0 ; set zero as default result |
1174 tstfsz xB+0 ; pending div/0 ? | |
1175 call div16x16 ; NO - execute xC = xA / xB = summed ppO2 / number of sensors | |
1176 movff xC+0,sensor_setpoint ; copy result (or its default) | |
604 | 1177 |
1178 ; set default value for pSCR mode: 0 => let p2_deco.c compute the ppO2 based on current dil gas and depth | |
560 | 1179 ; will be overwritten later in case we are in sensor mode and have at least one usable sensor |
634 | 1180 clrf WREG ; pre-load a zero |
1181 btfsc FLAG_pscr_mode ; check if we are in pSCR mode | |
1182 movff WREG,char_I_const_ppO2 ; YES - write 0 to char_I_const_ppo2, | |
1183 ; it will be overwritten if we have a usable sensor reading | |
1184 btfsc bailout_mode ; check if we are in bailout | |
1185 bra check_sensor_vote ; YES - no sensor data transfer to char_I_const_ppO2 in this case | |
640 | 1186 movf dive_ccr_mode,W ; NO - get mode (0: Fixed SP, 1: Sensor, 2: Auto SP) |
634 | 1187 sublw .1 ; - in sensor mode? |
1188 bnz check_sensor_vote ; NO - not in sensor mode - no transfer of sensor data to char_I_const_ppO2 | |
1189 tstfsz xB+0 ; YES - check if we have found at least one usable sensor | |
1190 bra check_sensor_avg_use ; YES - we have at least one usable sensor | |
1191 bsf warn_det_sensors_lost ; NO - we have NO usable sensors | |
1192 btfsc FLAG_ccr_mode ; - check if we are in CCR mode | |
1193 movff opt_setpoint_cbar+0,char_I_const_ppO2 ; YES - select fixed setpoint no. 1 for fallback | |
1194 bra check_sensor_vote ; - continue with voting logic flags | |
1195 | |
1196 check_sensor_avg_use: | |
604 | 1197 ; we have at least one usable sensor with a ppO2 value > 0 |
634 | 1198 bcf warn_det_sensors_lost ; clear warning |
1199 bcf shown_sensors_lost ; re-arm custom view show-up | |
560 | 1200 movff sensor_setpoint,char_I_const_ppO2 ; transfer average sensor value to p2_deco.c code |
634 | 1201 |
1202 check_sensor_vote: | |
1203 ; check if individual sensors agree with their average | |
1204 bsf voting_logic_sensor1 ; default sensor to be within voting | |
1205 movff sensor1_ppO2,WREG ; get sensor's ppO2 | |
1206 rcall check_sensor_voting_helper ; check if sensor is within +/- range around setpoint | |
604 | 1207 tstfsz WREG ; sensor within range (WREG = 0)? |
1208 bcf voting_logic_sensor1 ; NO - vote out this sensor | |
560 | 1209 |
634 | 1210 bsf voting_logic_sensor2 ; default sensor to be within voting |
1211 movff sensor2_ppO2,WREG ; get sensor's ppO2 | |
1212 rcall check_sensor_voting_helper ; check if sensor is within +/- range around setpoint | |
604 | 1213 tstfsz WREG ; sensor within range (WREG = 0)? |
1214 bcf voting_logic_sensor2 ; NO - vote out this sensor | |
560 | 1215 |
634 | 1216 bsf voting_logic_sensor3 ; default sensor to be within voting |
1217 movff sensor3_ppO2,WREG ; get sensor's ppO2 | |
1218 rcall check_sensor_voting_helper ; check if sensor is within +/- range around setpoint | |
604 | 1219 tstfsz WREG ; sensor within range (WREG = 0)? |
1220 bcf voting_logic_sensor3 ; NO - vote out this sensor | |
582 | 1221 |
560 | 1222 ; check if a warning shall be issued on sensor disagreement |
582 | 1223 btfsc FLAG_ccr_mode ; check if we are in CCR mode |
604 | 1224 bra check_warn_sensor_0 ; YES - continue with further checks |
582 | 1225 btfsc FLAG_pscr_mode ; check if we are in pSCR mode |
604 | 1226 bra check_warn_sensor_0 ; YES - continue with further checks |
1227 bra check_warn_sensor_done ; not in CCR and not in pSCR, so no warning | |
634 | 1228 |
604 | 1229 check_warn_sensor_0: ; we are in CCR or pSCR mode |
623 | 1230 btfsc bailout_mode ; check if we are in bailout |
604 | 1231 bra check_warn_sensor_done ; YES - no warning in this case |
640 | 1232 movf dive_ccr_mode,W ; get mode (0: Fixed SP, 1: Sensor, 2: Auto SP) |
604 | 1233 sublw .1 ; in sensor mode? |
1234 bnz check_warn_sensor_done ; NO - not in sensor mode - no warning in this case | |
634 | 1235 |
604 | 1236 check_warn_sensor_1: |
582 | 1237 btfss sensor1_calibrated_ok ; check if sensor has a valid calibration |
1238 bra check_warn_sensor_2 ; NO - sensor can not cause a warning then | |
1239 btfss use_O2_sensor1 ; YES - check if sensor is in use | |
604 | 1240 bra check_warn_sensor_2 ; NO - sensor can not cause a warning then |
1241 btfsc voting_logic_sensor1 ; YES - check if sensor value is within agreement range | |
1242 bra check_warn_sensor_2 ; YES - continue with next sensor | |
634 | 1243 bsf warn_det_sensors_div ; NO - sensors divergence |
1244 return ; - done | |
1245 | |
604 | 1246 check_warn_sensor_2: |
582 | 1247 btfss sensor2_calibrated_ok ; check if sensor has a valid calibration |
1248 bra check_warn_sensor_3 ; NO - sensor can not cause a warning then | |
1249 btfss use_O2_sensor2 ; YES - check if sensor is in use | |
604 | 1250 bra check_warn_sensor_3 ; NO - sensor can not cause a warning then |
1251 btfsc voting_logic_sensor2 ; YES - check if sensor value is within agreement range | |
1252 bra check_warn_sensor_3 ; YES - continue with next sensor | |
634 | 1253 bsf warn_det_sensors_div ; NO - sensors divergence |
1254 return ; - done | |
1255 | |
604 | 1256 check_warn_sensor_3: |
582 | 1257 btfss sensor3_calibrated_ok ; check if sensor has a valid calibration |
1258 bra check_warn_sensor_agree ; NO - sensor can not cause a warning then | |
1259 btfss use_O2_sensor3 ; YES - check if sensor is in use | |
604 | 1260 bra check_warn_sensor_agree ; NO - sensor can not cause a warning then |
1261 btfsc voting_logic_sensor3 ; YES - check if sensor value is within agreement range | |
1262 bra check_warn_sensor_agree ; YES - continue with next sensor | |
634 | 1263 bsf warn_det_sensors_div ; NO - set warning |
1264 return ; - done | |
1265 | |
604 | 1266 check_warn_sensor_done: |
560 | 1267 check_warn_sensor_agree: |
634 | 1268 bcf warn_det_sensors_div ; clear warning |
1269 bcf shown_sensors_diverg ; re-arm custom view show-up | |
1270 return ; done | |
1271 | |
1272 | |
1273 ;----------------------------------------------------------------------------- | |
1274 ; Helper Function - check if sensor mV is outside minimum | |
1275 ; | |
604 | 1276 check_min_threshold: |
623 | 1277 MOVLI min_mv,sub_b ; load minimum mV value |
604 | 1278 goto sub16 ; sub_c = sensor_mv - min_mv (and return) |
1279 | |
634 | 1280 |
1281 ;----------------------------------------------------------------------------- | |
1282 ; Helper Function - check if sensor mV is outside maximum | |
1283 ; | |
604 | 1284 check_max_threshold: |
623 | 1285 MOVLI max_mv,sub_b ; load maximum mV value |
604 | 1286 goto sub16 ; sub_c = sensor_mv - max_mv (and return) |
1287 | |
634 | 1288 |
1289 ;----------------------------------------------------------------------------- | |
1290 ; Helper Function - compute ppO2 from sensor mV and calibration factor | |
1291 ; | |
560 | 1292 compute_ppo2_helper: |
623 | 1293 call mult16x16 ; xC:4 = xA:2 * xB:2 |
634 | 1294 MOVLI .1000,xB ; load scaling factor |
623 | 1295 call div32x16 ; xC:4 = xC:4 / xB:2 with xA as remainder |
1296 tstfsz xC+1 ; is the ppO2 higher than 2.55 bar? | |
1297 setf xC+0 ; YES - set result to 255 aka 2.55 bar | |
634 | 1298 return ; done |
1299 | |
1300 | |
1301 ;----------------------------------------------------------------------------- | |
1302 ; Helper Function - check if sensor is within +/- range around setpoint | |
1303 ; | |
560 | 1304 check_sensor_voting_helper: |
634 | 1305 subwf sensor_setpoint,W ; deviation = setpoint - sensor ppO2 |
1306 btfsc STATUS,N ; result negative? | |
1307 negf WREG,W ; YES - negate deviation | |
1308 sublw sensor_voting_logic_threshold ; WREG = threshold - deviation | |
1309 btfss STATUS,N ; result negative? | |
1310 retlw .0 ; NO - within range | |
1311 retlw .1 ; YES - out of range | |
1312 | |
1313 ; cpfsgt sensor_setpoint ; sensor ppO2 > setpoint? | |
1314 ; bra check_sensor_voting_helper_2 ; NO | |
1315 ; ;bra check_sensor_voting_helper_1 ; YES | |
1316 ; | |
1317 ;check_sensor_voting_helper_1: | |
1318 ; subwf sensor_setpoint,W ; WREG = setpoint - sensor ppO2 | |
1319 ; bra check_sensor_voting_helper_com ; continue with common part | |
1320 ; | |
1321 ;check_sensor_voting_helper_2: | |
1322 ; movwf lo ; copy sensor ppO2 to lo | |
1323 ; movf sensor_setpoint,W ; copy setpoint to WREG | |
1324 ; subwf lo,W ; WREG = sensor ppO2 - setpoint | |
1325 ; ;bra check_sensor_voting_helper_com ; continue with common part | |
1326 ; | |
1327 ;check_sensor_voting_helper_com: | |
1328 ; movwf lo ; copy deviation to lo | |
1329 ; movlw sensor_voting_logic_threshold ; load threshold in 0.01 bar | |
1330 ; cpfsgt lo ; deviation > threshold ? | |
1331 ; retlw .0 ; NO - within range | |
1332 ; retlw .1 ; YES - out of range | |
582 | 1333 |
623 | 1334 ENDIF ; _external_sensor |
631 | 1335 ENDIF ; _ccr_pscr |
623 | 1336 |
560 | 1337 |
604 | 1338 IFDEF _cave_mode |
623 | 1339 |
634 | 1340 ;----------------------------------------------------------------------------- |
1341 ; Cave Mode - on/off Switching | |
1342 ; | |
631 | 1343 cavemode_toggle_onoff: |
1344 bcf request_cave_toggle ; clear request flag | |
1345 btg cave_mode ; toggle the on/off state | |
1346 return ; done | |
1347 | |
634 | 1348 |
1349 ;----------------------------------------------------------------------------- | |
1350 ; Cave Mode - switch off and set Dive as turned | |
1351 ; | |
631 | 1352 cavemode_switch_off_turned: |
1353 bcf request_cave_off_turned ; clear request flag | |
1354 bcf cave_mode ; switch cave mode off | |
1355 bra cavemode_turndive_turn_exec ; set dive as turned (and return) | |
1356 | |
1357 | |
634 | 1358 ;----------------------------------------------------------------------------- |
1359 ; Cave Mode - check if 'turn dive' is allowed | |
1360 ; | |
631 | 1361 global cavemode_turndive_check |
1362 cavemode_turndive_check: | |
1363 btfss cave_mode ; cave mode switched on? | |
1364 retlw 1 ; NO - signal not allowed | |
1365 btfss dive_turned ; YES - is the dive currently turned? | |
1366 retlw 0 ; NO - command is allowed | |
1367 movf backtrack_waypoint_turn,W ; YES - copy turn point number to WREG | |
1368 cpfslt backtrack_waypoint_num ; - current waypoint number < turn point number ? | |
1369 retlw 1 ; NO - signal not allowed | |
1370 retlw 0 ; YES - command is allowed | |
1371 | |
634 | 1372 |
1373 ;----------------------------------------------------------------------------- | |
1374 ; Cave Mode - execute 'turn dive' toggle | |
1375 ; | |
631 | 1376 cavemode_turndive_toggle: |
1377 bcf request_turn_toggle ; clear request flag | |
1378 rcall cavemode_turndive_check ; check if command is allowed | |
1379 tstfsz WREG ; command allowed? | |
1380 return ; NO - abort | |
1381 btfss dive_turned ; YES - is the dive currently turned? | |
1382 bra cavemode_turndive_turn_exec ; NO - turn the dive | |
634 | 1383 bcf dive_turned ; YES - set dive as not turned any more |
1384 bcf backtrack_shutdown ; - set backtracking as not shut down any more | |
1385 call set_logbook_marker ; - set a logbook marker | |
1386 goto resume_backtrack_recording ; - append further logging after current waypoint and return | |
1387 | |
1388 | |
1389 ;----------------------------------------------------------------------------- | |
1390 ; Cave Mode - set the dive as turned | |
1391 ; | |
631 | 1392 cavemode_turndive_turn: |
1393 bcf request_turn_turn ; clear request flag | |
1394 btfss cave_mode ; cave mode switched on? | |
1395 return ; NO - abort | |
1396 btfsc dive_turned ; YES - is the dive already turned? | |
1397 return ; YES - nothing to do any more | |
1398 cavemode_turndive_turn_exec: | |
634 | 1399 bsf dive_turned ; NO - set dive as turned |
1400 call set_logbook_marker ; - set a logbook marker | |
1401 goto write_backtrack_turnpoint ; - write a turn-point waypoint and return | |
1402 | |
1403 | |
1404 ;----------------------------------------------------------------------------- | |
1405 ; Cave Mode - check if setting a Waypoint is allowed | |
1406 ; | |
631 | 1407 global cavemode_waypoint_set_check |
1408 cavemode_waypoint_set_check: | |
1409 btfss cave_mode ; cave mode switched on? | |
1410 retlw 1 ; NO - command not allowed | |
1411 btfsc dive_turned ; YES - is the dive turned? | |
1412 retlw 1 ; YES - no setting of waypoints on way out, command not allowed | |
1413 btfsc backtrack_entire_full ; NO - storage entirely used up? | |
1414 retlw 1 ; YES - out of storage capacity, command not allowed | |
1415 movlw backtrack_waypoint_max ; NO - get highest allowed waypoint number | |
1416 cpfslt backtrack_waypoint_num ; - current waypoint number < max allowed number? | |
1417 retlw 1 ; NO - command not allowed | |
1418 retlw 0 ; YES - command is allowed | |
1419 | |
634 | 1420 |
1421 ;----------------------------------------------------------------------------- | |
1422 ; Cave Mode - set a Waypoint | |
1423 ; | |
631 | 1424 cavemode_waypoint_set: |
1425 bcf request_waypoint_set ; clear request flag | |
1426 rcall cavemode_waypoint_set_check ; check if command is allowed to execute | |
1427 tstfsz WREG ; command allowed? | |
1428 return ; NO - no waypoint setting possible, abort | |
1429 call set_logbook_marker ; YES - set a logbook marker | |
1430 goto write_backtrack_waypoint ; - execute command (and return) | |
1431 | |
1432 | |
634 | 1433 ;----------------------------------------------------------------------------- |
1434 ; Cave Mode - check if stepping one Waypoint outwards is allowed | |
1435 ; | |
631 | 1436 global cavemode_waypoint_out_check |
1437 cavemode_waypoint_out_check: | |
1438 btfss cave_mode ; cave mode switched on? | |
1439 retlw 1 ; NO - command not allowed | |
1440 btfss dive_turned ; YES - is the dive turned? | |
1441 retlw 1 ; NO - no stepping back on way in, command not allowed | |
1442 btfsc waypoint_reached_first ; YES - already at first waypoint? | |
1443 retlw 1 ; YES - command not allowed | |
1444 retlw 0 ; NO - command is allowed | |
1445 | |
634 | 1446 |
1447 ;----------------------------------------------------------------------------- | |
1448 ; Cave Mode - step one Waypoint outwards | |
1449 ; | |
631 | 1450 cavemode_waypoint_out: |
1451 bcf request_waypoint_out ; clear request flag | |
1452 rcall cavemode_waypoint_out_check ; check if command is allowed to execute | |
1453 tstfsz WREG ; command allowed? | |
1454 return ; NO - no further out possible, abort | |
1455 goto backtrack_waypoint_go_out ; YES - execute the command (and return) | |
1456 | |
1457 | |
634 | 1458 ;----------------------------------------------------------------------------- |
1459 ; Cave Mode - check if stepping one Waypoint inwards is allowed | |
1460 ; | |
631 | 1461 global cavemode_waypoint_in_check |
1462 cavemode_waypoint_in_check: | |
1463 btfss cave_mode ; cave mode switched on? | |
1464 retlw 1 ; NO - command not allowed | |
1465 btfss dive_turned ; YES - is the dive turned? | |
1466 retlw 1 ; NO - no stepping forward on way in, command not allowed | |
1467 btfsc waypoint_reached_last ; YES - already at last waypoint? | |
1468 retlw 1 ; YES - command not allowed | |
1469 retlw 0 ; NO - command is allowed | |
1470 | |
634 | 1471 |
1472 ;----------------------------------------------------------------------------- | |
1473 ; Cave Mode - step one Waypoint inwards | |
1474 ; | |
631 | 1475 cavemode_waypoint_in: |
1476 bcf request_waypoint_in ; clear request flag | |
1477 rcall cavemode_waypoint_in_check ; check if command is allowed to execute | |
1478 tstfsz WREG ; command allowed? | |
1479 return ; NO - no further in possible, abort | |
1480 goto backtrack_waypoint_go_in ; YES - execute command (and return) | |
623 | 1481 |
634 | 1482 |
1483 ;----------------------------------------------------------------------------- | |
1484 ; Cave Mode - store current Delta Time | |
1485 ; | |
1486 write_backtrack_deltatime: | |
1487 rcall setup_backtrack_index ; setup writing position | |
1488 bra write_backtrack_datum_deltatime ; store the current delta time (and return) | |
1489 | |
1490 | |
1491 ;----------------------------------------------------------------------------- | |
1492 ; Cave Mode - store a Backtracking Depth Data Set | |
1493 ; | |
1494 write_backtrack_1min_depth: | |
1495 rcall setup_backtrack_index ; setup writing position | |
1496 rcall write_backtrack_datum_depth ; store depth | |
1497 rcall write_backtrack_datum_zerotime ; reset the time elapsed since last depth recording and store it | |
1498 bra write_backtrack_datum_check ; store new writing position, check remaining storage capacity ()and return) | |
1499 | |
1500 | |
1501 ;----------------------------------------------------------------------------- | |
1502 ; Cave Mode - store a Waypoint | |
1503 ; | |
1504 write_backtrack_waypoint: | |
1505 rcall setup_backtrack_index ; setup writing position | |
1506 rcall write_backtrack_datum_deltatime ; store the time elapsed since last depth recording | |
1507 movf POSTINC1,W ; dummy read to increment the writing position index | |
1508 rcall write_backtrack_datum_depth ; store depth | |
1509 rcall write_backtrack_datum_gas ; store gas availability vector | |
1510 rcall write_backtrack_datum_waypoint ; store waypoint number | |
1511 rcall write_backtrack_datum_zerotime ; reset the time elapsed since last depth recording and store it | |
1512 bra write_backtrack_datum_check ; store new writing position, check remaining storage capacity (and return) | |
1513 | |
1514 | |
1515 ;----------------------------------------------------------------------------- | |
1516 ; Cave Mode - store a Turn Point | |
1517 write_backtrack_turnpoint: | |
1518 rcall write_backtrack_waypoint ; write a waypoint (see above) | |
1519 movf POSTDEC1,W ; dummy read to decrement the position index to the waypoint number datum | |
1520 movff FSR1L,char_I_backtrack_index ; store updated writing position | |
1521 movff backtrack_waypoint_num,backtrack_waypoint_turn; memorize this waypoint as turn point | |
1522 return ; done | |
1523 | |
1524 | |
1525 ;----------------------------------------------------------------------------- | |
1526 ; Cave Mode - append further Logging after current Waypoint | |
1527 ; | |
1528 resume_backtrack_recording: | |
1529 clrf backtrack_waypoint_turn ; clear turn point reference | |
1530 bsf waypoint_reached_last ; declare to be at last waypoint now | |
1531 rcall setup_backtrack_index ; setup index position | |
1532 movf POSTINC1,W ; dummy read to increment the position index to the delta time datum | |
1533 rcall write_backtrack_datum_zerotime ; reset the time elapsed since last depth recording and store it | |
1534 bra write_backtrack_datum_check ; store new writing position, check remaining storage capacity (and return) | |
1535 | |
1536 | |
1537 ;----------------------------------------------------------------------------- | |
1538 ; Cave Mode - execute stepping one Waypoint outwards | |
1539 ; | |
1540 backtrack_waypoint_go_out: | |
1541 bcf waypoint_reached_last ; not at last waypoint (or turn point) any more | |
1542 rcall setup_backtrack_index ; setup index position | |
1543 movlw b'11100000'-.1 ; a waypoint datum has bits 5-7 set, -1 because of cpfsgt | |
1544 backtrack_waypoint_go_out_loop: | |
1545 movff POSTDEC1,lo ; dummy read current datum and go to previous datum (there is no PREDEC) | |
1546 cpfsgt INDF1 ; read datum, is it a waypoint datum? | |
1547 bra backtrack_waypoint_go_out_loop ; NO - try next datum | |
1548 movff FSR1L,char_I_backtrack_index ; store new index position | |
1549 movf INDF1,W ; copy waypoint datum to WREG | |
1550 andlw b'00011111' ; remove waypoint tag | |
1551 movwf backtrack_waypoint_num ; store new waypoint number | |
1552 movlw .1 ; number of first waypoint | |
1553 cpfsgt backtrack_waypoint_num ; current waypoint number > number of first waypoint ? | |
1554 bsf waypoint_reached_first ; NO - reached first waypoint | |
1555 goto restart_deco_engine_wo_norm ; invalidate all alternative plan data and restart deco engine | |
1556 | |
1557 | |
1558 ;----------------------------------------------------------------------------- | |
1559 ; Cave Mode - execute stepping one Waypoint inwards | |
1560 ; | |
1561 backtrack_waypoint_go_in: | |
1562 bcf waypoint_reached_first ; not at first waypoint any more | |
1563 rcall setup_backtrack_index ; setup index position | |
1564 movlw b'11100000'-.1 ; a waypoint datum has bits 5-7 set, -1 because of cpfsgt | |
1565 backtrack_waypoint_go_in_loop: | |
1566 cpfsgt PREINC1 ; go to next datum, read it, is it a waypoint datum? | |
1567 bra backtrack_waypoint_go_in_loop ; NO - try next datum | |
1568 movff FSR1L,char_I_backtrack_index ; store new index position | |
1569 movf INDF1,W ; copy waypoint datum to WREG | |
1570 andlw b'00011111' ; remove waypoint tag | |
1571 movwf backtrack_waypoint_num ; store new waypoint number | |
1572 movf backtrack_waypoint_turn,W ; load WREG with waypoint number of turn point | |
1573 cpfslt backtrack_waypoint_num ; new waypoint number < number of turn point ? | |
1574 bsf waypoint_reached_last ; NO - reached last waypoint | |
1575 goto restart_deco_engine_wo_norm ; invalidate all alternative plan data and restart deco engine | |
1576 | |
1577 | |
1578 ;----------------------------------------------------------------------------- | |
1579 ; Cave Mode Helper Function - set up Index Position | |
1580 ; | |
1581 setup_backtrack_index: | |
1582 lfsr FSR1,char_I_backtrack_storage ; load FSR1 with base address of the backtracking storage | |
1583 movff char_I_backtrack_index,FSR1L ; adjust FSR1 to the current index position | |
1584 return | |
1585 | |
1586 | |
1587 ;----------------------------------------------------------------------------- | |
1588 ; Cave Mode Helper Function - reset Time since last Depth Recording and store it | |
1589 ; | |
1590 write_backtrack_datum_zerotime: | |
1591 clrf backtrack_deltatime ; reset the time elapsed since last depth recording | |
1592 ;bra write_backtrack_datum_deltatime ; store the time | |
1593 | |
1594 | |
1595 ;----------------------------------------------------------------------------- | |
1596 ; Cave Mode Helper Function - store Time elapsed since last Depth Recording | |
1597 ; | |
1598 write_backtrack_datum_deltatime: | |
1599 movf backtrack_deltatime,W ; get the time elapsed since last depth recording | |
1600 bsf WREG,7 ; add the time marker (bit 7 set) to the time stored in WREG | |
1601 movwf INDF1 ; write the time and keep the writing position index pointing on it | |
1602 return ; done | |
1603 | |
1604 | |
1605 ;----------------------------------------------------------------------------- | |
1606 ; Cave Mode Helper Function - store Depth | |
1607 ; | |
1608 write_backtrack_datum_depth: | |
1609 movf depth_meter,W ; get current depth in meters into WREG | |
1610 btfsc WREG,7 ; current depth < 128 m ? | |
1611 movlw .127 ; NO - clip depth to 127 meters (protect time marker bit) | |
1612 movwf POSTINC1 ; write the depth entry and increment the writing position index | |
1613 return ; done | |
1614 | |
1615 | |
1616 ;----------------------------------------------------------------------------- | |
1617 ; Cave Mode Helper Function - store Gas Availability Vector | |
1618 ; | |
1619 write_backtrack_datum_gas: | |
1620 ; Cave mode is currently only available with gas needs calculation enabled, | |
1621 ; so deco mode is either OC anyhow or CCR/pSCR in bailout mode. Hence it is | |
1622 ; always the OC (bailout) gases whose staging status needs to be stored. | |
1623 lfsr FSR2,opt_gas_type ; load base address of the OC/bailout gas types | |
1624 movlw NUM_GAS ; load number of gases | |
1625 movwf lo ; initialize loop counter | |
1626 movlw b'00000001' ; load gas bit pattern for the first gas | |
1627 movwf hi ; store gas bit pattern in hi | |
1628 movlw b'11000000' ; initialize WREG with the gas staging status tag | |
1629 write_backtrack_datum_gas_loop: | |
1630 movff POSTINC2,up ; get gas type and increment index | |
1631 btfsc up,gas_staged ; gas staged? | |
1632 iorwf hi,W ; YES - set respective gas bit | |
1633 rlncf hi,F ; rotate gas bit pattern to match the next gas | |
1634 decfsz lo,F ; decrement loop counter, did it became zero? | |
1635 bra write_backtrack_datum_gas_loop ; NO - loop | |
1636 movwf POSTINC1 ; YES - write the gas staging status entry and increment the writing position index | |
1637 return ; - done | |
1638 | |
1639 | |
1640 ;----------------------------------------------------------------------------- | |
1641 ; Cave Mode Helper Function - store a Waypoint Number | |
1642 ; | |
1643 write_backtrack_datum_waypoint: | |
1644 incf backtrack_waypoint_num,F ; increment the waypoint number | |
1645 movf backtrack_waypoint_num,W ; copy waypoint number to WREG | |
1646 iorlw b'11100000' ; add the waypoint marker (bit 7-5 set) to the number stored in WREG | |
1647 movwf POSTINC1 ; write the waypoint datum and increment the writing position index | |
1648 movlw .2 ; load a 2 into WREG | |
1649 cpfslt backtrack_waypoint_num ; new waypoint number >= 2 ? | |
1650 bcf waypoint_reached_first ; YES - not at first waypoint any more | |
1651 return ; done | |
1652 | |
1653 | |
1654 ;----------------------------------------------------------------------------- | |
1655 ; Cave Mode Helper Function - store new writing position and check remaining storage capacity | |
1656 ; | |
1657 write_backtrack_datum_check: | |
1658 movff FSR1L,char_I_backtrack_index ; store new index position | |
1659 movlw backtrack_almost_full_threshold ; load threshold for backtracking storage almost full | |
1660 bcf backtrack_almost_full ; clear almost full state | |
1661 cpfslt FSR1L ; index < threshold ? | |
1662 bsf backtrack_almost_full ; NO - flag backtracking storage is almost full | |
1663 movlw backtrack_entire_full_threshold ; load threshold for backtracking storage entirely full | |
1664 bcf backtrack_entire_full ; clear entirely full state | |
1665 cpfslt FSR1L ; index < threshold ? | |
1666 bsf backtrack_entire_full ; NO - flag backtracking storage is entirely full | |
1667 return ; done | |
1668 | |
1669 ENDIF ; _cave_mode | |
1670 | |
1671 | |
1672 ;----------------------------------------------------------------------------- | |
1673 ; Calculate vertical Velocity | |
1674 ; | |
623 | 1675 calc_velocity: ; called every two seconds |
1676 btfsc velocity_active_num ; was velocity shown in last cycle? | |
1677 bra calc_velocity_1 ; YES - always update if shown before | |
1678 btfss count_divetime ; NO - is the dive time counted, i.e. deeper than dive threshold? | |
1679 return ; NO - display velocity only if deeper than 1m, | |
1680 ; i.e. not at the surface after the dive | |
1681 calc_velocity_1: | |
1682 ; calculate pressure difference | |
1683 MOVII pressure_abs_cached, sub_a; current pressure | |
1684 MOVII last_pressure_velocity,sub_b; last pressure | |
1685 call subU16 ; do an unsigned subtraction | |
1686 | |
1687 ; decide if ascending or descending | |
1688 bcf neg_flag_velocity ; set to ascending by default | |
1689 btfsc neg_flag ; pressure differential negative? | |
1690 bsf neg_flag_velocity ; YES - descending | |
1691 | |
1692 ; store current pressure as last pressure for next round | |
1693 MOVII pressure_abs_cached,last_pressure_velocity | |
1694 | |
1695 ; calculate velocity in m/min | |
1696 MOVII sub_c,xA ; copy pressure differential to xA | |
1697 MOVLI .39,xB ; put scale coefficient into xB (use 77 when called every second) | |
628 | 1698 call mult16x16 ; compute differential pressure in mbar * scale coefficient |
623 | 1699 MOVII xC,divA ; copy result to divA |
631 | 1700 ADDLI .64,divA ; add some round-up |
623 | 1701 movlw .7 ; divide by 2^7 |
1702 call div16 ; divA = divA / 2^WREG, yields velocity in m/min | |
1703 | |
1704 movlw .99 ; load a 99 | |
1705 cpfslt divA+0 ; velocity < 99 m/min ? | |
1706 movwf divA+0 ; NO - limit to 99 m/min | |
1707 | |
1708 bcf STATUS,C ; clear carry flag | |
1709 movlw velocity_display_threshold ; get threshold for displaying vertical velocity | |
1710 subwf divA+0,W ; subtract threshold from velocity | |
1711 btfss STATUS,C ; above threshold? | |
1712 bsf FLAG_TFT_velocity_clear ; NO - don't show / request to clear | |
1713 btfsc STATUS,C ; above threshold? | |
1714 bsf FLAG_TFT_velocity_show ; YES - request to show | |
1715 return ; done | |
0 | 1716 |
1717 | |
634 | 1718 ;----------------------------------------------------------------------------- |
1719 ; Check and Memorize if Dive went into Deco & Deco Region | |
1720 ; | |
628 | 1721 check_deco_states: |
1722 btfsc deco_region ; been within the deco stops region before? | |
1723 return ; YES - been in deco then before too, done | |
1724 movff char_O_deco_info,WREG ; NO - get deco info vector | |
631 | 1725 btfss WREG,deco_stops_norm ; do we have a deco obligation right now? |
628 | 1726 return ; NO - done |
1727 bsf deco_locked ; YES - memorize dive was in deco | |
1728 movff char_O_deco_depth+0,WREG ; - get depth of first stop in meters into WREG | |
1729 addlw deco_region_distance+.1 ; - add deco region start distance + 1 meter for the negative test to work | |
631 | 1730 subwf depth_meter,W ; - compute current depth - (first stop depth + deco region distance) |
628 | 1731 btfss STATUS,C ; - result negative? |
1732 bsf deco_region ; YES - memorize to have entered the deco stops region | |
1733 return ; - done | |
1734 | |
634 | 1735 |
1736 ;----------------------------------------------------------------------------- | |
1737 ; Exercise Safety Stop Control | |
1738 ; | |
623 | 1739 safety_stop_control: |
631 | 1740 TSTOSS opt_safetystop ; safety stop enabled? (=1: show safety stop) |
623 | 1741 return ; NO - done |
1742 | |
1743 btfsc FLAG_gauge_mode ; in gauge mode? | |
1744 return ; YES - omit (well, else fix collision of safety stop output with avg depth label) | |
1745 | |
1746 ; setup | |
1747 bcf safety_stop_enabled ; disable safety stop by default | |
1748 | |
1749 ; check for deco | |
1750 btfsc decostop_active ; in deco mode? | |
1751 bra safety_stop_finish ; YES - shut down safety stop | |
1752 | |
1753 ; below "opt_safety_stop_reset"? | |
631 | 1754 MOVII pressure_rel_cur_cached,mpr ; get current pressure into MPR |
1755 call convert_pres_to_depth ; convert pressure in [mbar] to depth in [cm] | |
1756 MOVII mpr,sub_a ; move depth in [cm] to sub_a | |
1757 movff opt_safety_stop_reset,WREG ; load safety stop reset threshold [dm] | |
1758 mullw .10 ; convert threshold from [dm] to [cm] | |
1759 MOVII PROD,sub_b ; move threshold in [cm] to sub_b | |
623 | 1760 call cmpU16 ; sub_a - sub_b |
634 | 1761 btfsc neg_flag ; below threshold depth? |
1762 bra safety_stop_control_chk ; NO - check if above end threshold | |
1763 ;bra safety_stop_reset ; YES - reset safety stop | |
1764 | |
1765 safety_stop_reset: | |
1766 movff opt_safety_stop_length,safety_stop_countdown ; rearm safety stop (load timer) | |
1767 incf safety_stop_countdown,F ; +1 because safety_stop_show decrements first | |
1768 bsf FLAG_TFT_safety_stop_clear ; request to clear safety stop | |
1769 return ; done | |
1770 | |
1771 safety_stop_control_chk: | |
623 | 1772 ; above "opt_safety_stop_end"? |
631 | 1773 movff opt_safety_stop_end,WREG ; load safety stop end threshold [dm] |
1774 mullw .10 ; convert threshold from [dm] to [cm] | |
1775 MOVII PROD,sub_b ; move threshold in [cm] to sub_b | |
623 | 1776 call cmpU16 ; sub_a - sub_b |
1777 btfsc neg_flag ; above or at threshold depth? | |
634 | 1778 bra safety_stop_finish ; YES - finish with safety stop and return |
1779 | |
623 | 1780 ; above "opt_safety_stop_start"? |
631 | 1781 movff opt_safety_stop_start,WREG ; load safety stop start threshold [dm] |
1782 mullw .10 ; convert threshold from [dm] to [cm] | |
1783 MOVII PROD,sub_b ; move threshold in [cm] to sub_b | |
623 | 1784 call cmpU16 ; sub_a - sub_b |
1785 btfss neg_flag ; above or at threshold depth? | |
1786 return ; NO - pause safety stop | |
1787 tstfsz safety_stop_countdown ; YES - safety stop armed? | |
1788 bsf safety_stop_enabled ; YES - enable safety stop | |
634 | 1789 return ; - done |
1790 | |
1791 | |
1792 ;----------------------------------------------------------------------------- | |
1793 ; Show Safety Stop | |
1794 ; | |
623 | 1795 safety_stop_show: |
1796 btfss safety_stop_enabled ; safety stop enabled? | |
1797 return ; NO - done | |
1798 dcfsnz safety_stop_countdown,F ; YES - decrement remaining stop time, reached zero? | |
634 | 1799 bra safety_stop_finish ; YES - finished with safety stop and return |
623 | 1800 bsf FLAG_TFT_safety_stop_show ; NO - request to show safety stop |
1801 return ; - done | |
1802 | |
634 | 1803 |
1804 ;----------------------------------------------------------------------------- | |
1805 ; Finish Safety Stop | |
1806 ; | |
623 | 1807 safety_stop_finish: |
634 | 1808 clrf safety_stop_countdown ; disarm safety stop |
1809 bcf safety_stop_enabled ; disable safety stop | |
1810 bsf FLAG_TFT_safety_stop_clear ; request to clear safety stop | |
1811 return ; done | |
1812 | |
1813 | |
1814 ;----------------------------------------------------------------------------- | |
1815 ; Check for Timeouts (called by tasks every 1/1 second) | |
1816 ; | |
1817 timeout_divemode: | |
1818 btfss dive_main_menu ; main dive menu shown? | |
1819 bra timeout_divemode_1 ; NO - skip | |
1820 btfsc trigger_timeout ; YES - timeout occurred? | |
1821 rcall divemenu_cleanup ; YES - clean up main menu and restore dive data | |
1822 | |
1823 timeout_divemode_1: | |
1824 btfss dive_pre_menu ; pre-menu shown? | |
1825 bra timeout_divemode_2 ; NO - skip | |
1826 btfsc trigger_timeout ; YES - timeout occurred? | |
1827 call menuview_toggle_reset ; YES - terminate the pre-menu | |
1828 | |
1829 timeout_divemode_2: | |
640 | 1830 INCI dive_timeout_timer ; increment timeout timer |
1831 | |
634 | 1832 btfss divetime_longer_1min ; does the dive already last for longer than one minute? |
640 | 1833 bra timeout_divemode_sub_1min ; NO - use a short timeout to achieve some extra hysteris when starting the dive |
634 | 1834 |
1835 btfsc FLAG_apnoe_mode ; in apnoe mode? | |
1836 bra timeout_divemode_apnoe ; YES - use apnoe timeout | |
1837 | |
1838 IFNDEF _DEBUG | |
1839 btfsc sensor_override_active ; in simulator mode? | |
1840 bra timeout_divemode_sim ; YES - use simulator timeout | |
1841 ENDIF | |
1842 | |
1843 movff opt_diveTimeout,WREG ; get dive timeout in minutes into WREG | |
1844 bra timeout_divemode_com_min ; continue with common part for minutes | |
1845 | |
1846 timeout_divemode_apnoe: | |
1847 movlw apnoe_timeout ; get apnoe timeout in minutes into WREG | |
1848 bra timeout_divemode_com_min ; continue with common part for minutes | |
1849 | |
1850 timeout_divemode_sim: | |
1851 MOVLI simulator_timeout,sub_a ; get simulator timeout in seconds directly into sub_a | |
1852 bra timeout_divemode_com_sec ; continue with common part for seconds | |
1853 | |
640 | 1854 timeout_divemode_sub_1min: |
1855 MOVLI divetime_less_1min_timeout,sub_a ; use a short timeout as an extra hysteresis during the descent | |
1856 bra timeout_divemode_com_sec ; continue with common part for seconds | |
1857 | |
634 | 1858 timeout_divemode_com_min: |
1859 mullw .60 ; multiply with 60 to convert minutes in WREG to seconds | |
1860 MOVII PRODL,sub_a ; copy resulting seconds to sub_a | |
1861 | |
1862 timeout_divemode_com_sec: | |
1863 MOVII dive_timeout_timer,sub_b ; copy current timeout timer value to sub_b | |
1864 call cmpU16 ; check sub_a - sub_b | |
1865 btfsc neg_flag ; result negative, i.e. timeout? | |
1866 bcf divemode ; YES - terminate dive mode | |
1867 return ; done | |
1868 | |
1869 | |
1870 ;----------------------------------------------------------------------------- | |
1871 ; Clean up Dive Menu Area and restore Dive Data | |
1872 ; | |
1873 divemenu_cleanup: | |
631 | 1874 bcf dive_main_menu ; clear flag for dive mode menu shown |
1875 call TFT_clear_divemode_menu ; clear menu area | |
1876 | |
1877 btfss custom_view_locked ; was the custom view locked by the menu system? | |
634 | 1878 bra divemenu_cleanup_1 ; NO - continue with redrawing the lower display |
1879 bcf custom_view_locked ; YES - release locked | |
631 | 1880 movf backup_customview,W ; - get previous custom view into WREG |
1881 cpfseq active_customview ; - compare with current custom view, equal? | |
1882 call dive_customview_recall ; NO - redraw previous custom view | |
1883 | |
634 | 1884 divemenu_cleanup_1: |
1885 bsf FLAG_TFT_active_gas_divemode; request redraw of gas/setpoint/diluent | |
1886 bsf FLAG_TFT_temperature ; request redraw of temperature (or resettable dive) | |
631 | 1887 bcf better_gas_blinking ; stop better gas cue |
1888 bcf better_dil_blinking ; stop better dil cue | |
634 | 1889 ;bra request_redraw_NDL_deco_data; request redraw of NDL/deco data and return |
1890 | |
1891 | |
1892 ;----------------------------------------------------------------------------- | |
1893 ; Request redraw of NDL/Deco Data | |
1894 ; | |
623 | 1895 request_redraw_NDL_deco_data: |
1896 btfsc FLAG_gauge_mode ; in gauge mode? | |
1897 return ; YES - done | |
1898 btfss decostop_active ; NO - in deco mode? | |
1899 bra timeout_divemode_menu_ndl ; NO - show NDL again | |
1900 ;bra timeout_divemode_menu_deco ; YES - show deco again | |
1901 | |
1902 timeout_divemode_menu_deco: | |
1903 bsf FLAG_TFT_display_deco_mask ; show deco mask | |
1904 bsf FLAG_TFT_display_deco ; show deco stop | |
1905 bsf FLAG_TFT_display_tts ; show TTS time | |
1906 return ; done | |
582 | 1907 |
1908 timeout_divemode_menu_ndl: | |
623 | 1909 bsf FLAG_TFT_display_ndl_mask ; show NDL mask |
1910 bsf FLAG_TFT_display_ndl ; show NDL time | |
1911 return ; done | |
0 | 1912 |
634 | 1913 |
1914 ;----------------------------------------------------------------------------- | |
1915 ; Check if Dive Mode needs to be started (called from Surface Mode) | |
1916 ; | |
1917 global check_dive_modes_surf | |
1918 check_dive_modes_surf: | |
1919 SMOVII pressure_rel_cur,sub_a ; ISR-safe 2 byte copy of current relative pressure to sub_a | |
1920 bcf divetime_longer_1min ; not diving when in surface mode | |
1921 bra check_dive_modes ; continue with common part | |
1922 | |
1923 | |
1924 ;----------------------------------------------------------------------------- | |
1925 ; Check if Dive Mode needs to be finished (called from Dive Loop) | |
1926 ; | |
1927 check_dive_modes_dive: | |
1928 MOVII pressure_rel_cur_cached,sub_a ; copy cached relative pressure to sub_a | |
1929 ;bra check_dive_modes ; continue with common part | |
1930 | |
1931 | |
1932 ;----------------------------------------------------------------------------- | |
1933 ; Check for Dive Mode Start/Finish - common Part | |
1934 ; | |
1935 check_dive_modes: | |
1936 btfss high_altitude_mode ; in high altitude mode? | |
1937 bra check_dive_modes_norm ; NO - use normal start-dive threshold | |
1938 btfsc divetime_longer_1min ; YES - diving since > one minute? | |
1939 bra check_dive_modes_norm ; YES - this is a real dive -> use normal start-dive threshold | |
1940 ;bra check_dive_modes_high ; NO - use hight-altitude start-dive threshold | |
1941 | |
1942 check_dive_modes_high: | |
1943 ; high altitude start/end dive thresholds | |
1944 btfss count_divetime ; dive time counting, i.e. already in the dive? | |
1945 bra check_dive_modes_high_start ; NO - select start threshold | |
1946 ;bra check_dive_modes_high_end ; YES - select end threshold | |
1947 | |
1948 check_dive_modes_high_end: | |
1949 MOVLI dive_threshold_high_alt_end,sub_b ; load high altitude end threshold | |
1950 bra check_dive_modes_comm ; continue with common part | |
1951 | |
1952 check_dive_modes_high_start: | |
1953 MOVLI dive_threshold_high_alt_start,sub_b ; load high altitude start threshold | |
1954 bra check_dive_modes_comm ; continue with common part | |
1955 | |
1956 check_dive_modes_norm: | |
1957 ; normal altitude start/end dive thresholds | |
1958 btfss count_divetime ; dive time counting, i.e. already in the dive? | |
1959 bra check_dive_modes_norm_start ; NO - select start threshold | |
1960 ;bra check_dive_modes_norm_end ; YES - select end threshold | |
1961 | |
1962 check_dive_modes_norm_end: | |
1963 MOVLI dive_threshold_norm_alt_end,sub_b ; load normal altitude end threshold | |
1964 bra check_dive_modes_comm ; continue with common part | |
1965 | |
1966 check_dive_modes_norm_start | |
1967 MOVLI dive_threshold_norm_alt_start,sub_b ; load normal altitude start threshold | |
1968 ;bra check_dive_modes_comm ; continue with common part | |
1969 | |
1970 check_dive_modes_comm: | |
1971 call cmpU16 ; sub_a - sub_b = pressure_rel_cur - start-dive threshold | |
1972 btfsc neg_flag ; pressure_rel_cur > dive_threshold, i.e. deeper than threshold? | |
1973 bra check_dive_modes_shallow ; NO - shallower than threshold | |
1974 btfsc divetime_longer_1min ; YES - diving > one minute? | |
1975 CLRI dive_timeout_timer ; YES - reset timeout counter | |
1976 bsf divemode ; - set dive mode flag | |
1977 bsf count_divetime ; - count dive time | |
1978 return ; - done | |
1979 | |
1980 check_dive_modes_shallow: | |
1981 bcf count_divetime ; stop counting dive time | |
640 | 1982 ; btfss divetime_longer_1min ; diving > one minute? |
1983 ; bcf divemode ; NO - quit dive mode as this was no real dive | |
1984 return ; done mH | |
631 | 1985 |
634 | 1986 |
1987 ;----------------------------------------------------------------------------- | |
1988 ; Initialize the resettable Depth and Timer | |
1989 ; | |
1990 resettable_average_depth_init: | |
1991 CLRI pressure_rel_avg_trip ; prime the resettable average depth with 0 | |
1992 bra resettable_average_depth_common ; clear pressure accumulator and timer | |
1993 | |
1994 | |
1995 ;----------------------------------------------------------------------------- | |
1996 ; Reset the resettable Depth and Timer | |
1997 ; | |
1998 resettable_average_depth_reset: | |
1999 bcf request_reset_avg ; clear request | |
2000 MOVII pressure_rel_cur_cached,pressure_rel_avg_trip ; prime the resettable average depth | |
2001 ; with the current relative pressure (depth) | |
2002 ;bra resettable_average_depth_common ; clear pressure accumulator and timer | |
2003 | |
2004 | |
2005 ;----------------------------------------------------------------------------- | |
2006 ; Helper Function - common Part for resettable Depth and Timer init/reset | |
2007 ; | |
2008 resettable_average_depth_common: | |
2009 clrf pressure_rel_accu_trip+0 ; clear the resettable depth accumulator | |
2010 clrf pressure_rel_accu_trip+1 ; .... | |
2011 clrf pressure_rel_accu_trip+2 ; .... | |
2012 clrf pressure_rel_accu_trip+3 ; .... | |
2013 CLRI divesecs_avg_trip ; clear the resettable time accumulator | |
2014 return ; done | |
2015 | |
2016 | |
2017 ;----------------------------------------------------------------------------- | |
2018 ; Calculate Average Depth | |
2019 ; | |
0 | 2020 calc_average_depth: |
623 | 2021 ; 1. compute pressure_rel_cur_cached x 2, because this routine is called every 2nd second only |
634 | 2022 MOVII pressure_rel_cur_cached,xB ; copy current rel pressure to xB |
2023 bcf STATUS,C ; multiply rel pressure x 2 (via shift left) | |
2024 rlcf xB+0,F ; ... | |
2025 rlcf xB+1,F ; ... | |
623 | 2026 |
2027 ; 2a add (pressure_rel_cur_cached x 2) to the resettable depth accumulator | |
2028 ; will work up to 9999 mbar * 60 * 60 * 24 = 863913600 mbar (24h @ 90 m depth) | |
634 | 2029 movf xB+0,W ; pressure_rel_accu_trip += xB |
2030 addwf pressure_rel_accu_trip+0,F ; ... | |
2031 movf xB+1,W ; ... | |
2032 addwfc pressure_rel_accu_trip+1,F ; ... | |
2033 movlw .0 ; ... | |
2034 addwfc pressure_rel_accu_trip+2,F ; ... | |
2035 addwfc pressure_rel_accu_trip+3,F ; ... | |
623 | 2036 |
2037 ; 2b add (pressure_rel_cur_cached x 2) to the total depth accumulator | |
2038 ; will work up to 9999 mbar * 60 * 60 * 24 = 863913600 mbar (24h @ 90 m depth) | |
634 | 2039 movf xB+0,W ; pressure_rel_accu_total += xB |
2040 addwf pressure_rel_accu_total+0,F ; ... | |
2041 movf xB+1,W ; ... | |
2042 addwfc pressure_rel_accu_total+1,F ; ... | |
2043 movlw .0 ; ... | |
2044 addwfc pressure_rel_accu_total+2,F ; ... | |
2045 addwfc pressure_rel_accu_total+3,F ; ... | |
623 | 2046 |
2047 ; 3a compute the resettable average depth | |
634 | 2048 movff pressure_rel_accu_trip+0,xC+0 ; get the accumulated depth |
2049 movff pressure_rel_accu_trip+1,xC+1 ; ... | |
2050 movff pressure_rel_accu_trip+2,xC+2 ; ... | |
2051 movff pressure_rel_accu_trip+3,xC+3 ; ... | |
2052 MOVII divesecs_avg_trip,xB ; get the accumulated time | |
623 | 2053 |
2054 ; divide accumulated depth by accumulated time | |
604 | 2055 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
623 | 2056 |
2057 ; store result | |
2058 MOVII xC,pressure_rel_avg_trip ; resettable average depth | |
2059 btfss count_divetime ; is dive time counted? | |
604 | 2060 return ; NO (e.g. too shallow) |
2061 | |
623 | 2062 ; 3b compute the dive total average depth |
634 | 2063 movff pressure_rel_accu_total+0,xC+0 ; get accumulated depth |
2064 movff pressure_rel_accu_total+1,xC+1 ; ... | |
2065 movff pressure_rel_accu_total+2,xC+2 ; ... | |
2066 movff pressure_rel_accu_total+3,xC+3 ; ... | |
2067 MOVII divesecs_avg_total,xB ; get accumulated time | |
623 | 2068 |
2069 ; divide accumulated depth by accumulated time | |
2070 call div32x16 ; xC:4 = xC:4 / xB:2 with xA as remainder | |
2071 | |
2072 ; store result | |
2073 MOVII xC,pressure_rel_avg_total ; total dive average depth | |
2074 | |
2075 btfsc request_reset_avg ; shall reset the resettable average depth? | |
634 | 2076 rcall resettable_average_depth_reset ; YES - reset the resettable average depth |
623 | 2077 |
2078 TSTOSC opt_2ndDepthDisp ; drawing average depth instead of max depth? | |
2079 bsf FLAG_TFT_depth_maximum ; YES - flag to update display | |
2080 | |
2081 btfsc FLAG_gauge_mode ; in gauge mode? | |
2082 bsf FLAG_TFT_depth_maximum ; YES - flag to update display (needed for alternative layout) | |
2083 | |
2084 return ; done | |
2085 | |
2086 | |
634 | 2087 ;----------------------------------------------------------------------------- |
2088 ; Check Switches, execute Pre-Menu Items (called every second) | |
2089 ; | |
2090 test_switches_divemode: | |
623 | 2091 btfsc dive_main_menu ; dive mode menu shown? |
604 | 2092 bra test_switches_divemode_menu ; YES - use menu processor |
2093 btfsc switch_left ; NO - left button pressed? | |
634 | 2094 goto menuview_toggle ; YES - step through pre-menu |
604 | 2095 btfss switch_right ; NO - right button pressed? |
2096 return ; NO - done | |
623 | 2097 bcf switch_right ; YES - clear button event |
2098 tstfsz active_premenu ; - any pre-menu task selected? | |
634 | 2099 bra test_switches_divemode1 ; YES - execute a pre-menu item |
623 | 2100 bsf request_next_custview ; NO - request next custom view |
604 | 2101 return ; - done |
0 | 2102 |
2103 test_switches_divemode_menu: | |
623 | 2104 btfsc switch_left ; left button pressed? |
2105 bra test_switches_divemode_menu2 ; YES - move cursor | |
2106 btfsc switch_right ; NO - right button pressed? | |
634 | 2107 bra test_switches_divemode_menu3 ; YES - do a menu operation |
623 | 2108 btfss update_menu ; NO - shall update the menu? |
2109 return ; NO - done | |
2110 bcf update_menu ; YES - clear request | |
2111 goto menu_draw_lines_divemode ; - redraw the menu (to update color coding) and return | |
0 | 2112 |
2113 test_switches_divemode_menu1: | |
634 | 2114 clrf menu_pos_cur ; reset menu item number to zero |
0 | 2115 test_switches_divemode_menu2: |
634 | 2116 bcf switch_left ; clear left button event |
2117 incf menu_pos_cur,F ; increment menu item number | |
2118 incf menu_pos_max,W ; get number of items + 1 into WREG | |
2119 cpfslt menu_pos_cur ; incremented item number > number of items ? | |
2120 bra test_switches_divemode_menu1 ; YES - restart from first item | |
2121 call menu_draw_cursor_dive ; draw cursor at new position | |
623 | 2122 movlw divemode_timeout_mainmenu ; get timeout for main menu |
634 | 2123 call restart_timeout_time ; restart the timeout |
2124 return ; done | |
2125 | |
2126 test_switches_divemode_menu3: | |
2127 bcf switch_right ; clear right button event | |
2128 goto do_line_menu ; Warning! trashes STKPTR and returns to | |
2129 ; divemode_option_divemenu_return | |
0 | 2130 |
2131 test_switches_divemode1: | |
634 | 2132 movlw divemode_timeout_premenu ; get timeout for pre-menu |
2133 call restart_timeout_time ; restart the timeout | |
2134 movf active_premenu,W ; get active pre-menu item | |
0 | 2135 dcfsnz WREG,F |
634 | 2136 bra divemode_option_gaschange ; 1: switch to the the "better gas" / "better diluent" |
137 | 2137 dcfsnz WREG,F |
634 | 2138 bra divemode_option_ackn ; 2: acknowledge current advice, attention, or warning |
2139 dcfsnz WREG,F | |
2140 bra divemode_option_divemenu ; 3: enter dive mode menu | |
0 | 2141 dcfsnz WREG,F |
631 | 2142 IFDEF _cave_mode |
634 | 2143 bra divemode_option_cavemenu ; 4: enter cave mode menu |
631 | 2144 ELSE |
634 | 2145 return ; 4: (no cave mode compiled in) |
2146 ENDIF | |
2147 dcfsnz WREG,F | |
2148 bra divemode_option_sim_quit ; 5: quit simulator mode | |
2149 dcfsnz WREG,F | |
2150 bra divemode_option_sim_down ; 6: simulator mode - descent | |
2151 dcfsnz WREG,F | |
2152 bra divemode_option_sim_up ; 7: simulator mode - ascend | |
2153 dcfsnz WREG,F | |
2154 bra divemode_option_sim_time ; 8: simulator mode - +5 min | |
2155 dcfsnz WREG,F | |
2156 bra divemode_option_apnoe_quit ; 9: quit apnoe dive | |
2157 dcfsnz WREG,F | |
2158 bra divemode_option_gauge_reset ; 10: reset stopwatch and avg depth (gauge mode) | |
2159 dcfsnz WREG,F | |
2160 IFDEF _compass | |
2161 bra divemode_option_course ; 11: set bearing | |
2162 ELSE | |
2163 return ; 11: (no compass compiled in) | |
631 | 2164 ENDIF |
0 | 2165 dcfsnz WREG,F |
634 | 2166 bra divemode_option_layout ; 12: switch layout |
2167 return ; catch illegal item number | |
2168 | |
2169 | |
2170 ; item 1: switch to the the "better gas" / "better diluent" | |
2171 ; | |
2172 divemode_option_gaschange: | |
2173 IFDEF _ccr_pscr | |
2174 btfsc FLAG_oc_mode ; in OC mode? | |
2175 bra divemode_option_gaschange_oc ; YES | |
2176 btfsc bailout_mode ; in bailout? | |
2177 bra divemode_option_gaschange_oc ; YES | |
2178 | |
2179 ; in CCR/pSCR mode and not in bailout | |
2180 movff best_dil_number,menu_pos_cur ; select best diluent | |
2181 bcf better_dil_available ; clear flag immediately | |
2182 bra divemode_option_gaschange3 ; continue with common part | |
2183 ENDIF | |
2184 divemode_option_gaschange_oc: | |
2185 movff best_gas_number,menu_pos_cur ; select best gas | |
2186 bcf better_gas_available ; clear better gas cue | |
2187 | |
2188 divemode_option_gaschange3 | |
2189 bsf request_gas_change ; request a gas/diluent change | |
2190 goto menuview_toggle_reset ; terminate the pre-menu (and return) | |
2191 | |
2192 | |
2193 ; item 2: acknowledge current advice, attention, or warning | |
2194 ; | |
2195 divemode_option_ackn: | |
2196 btfss sign_warning ; any warning active? | |
2197 bra divemode_option_ackn_attn ; NO - check for active attentions | |
2198 movff DM_flags_war1_det,DM_flags_war1_ack ; YES - memorize active warnings as acknowledged | |
2199 movff DM_flags_war2_det,DM_flags_war2_ack ; - ... | |
2200 bra divemode_option_ackn_common ; - update screen | |
2201 | |
2202 divemode_option_ackn_attn: | |
2203 btfss sign_attention ; any attention active? | |
2204 bra divemode_option_ackn_advc ; NO - must be active advice then | |
2205 movff DM_flags_att1_det,DM_flags_att1_ack ; YES - memorize active attentions as acknowledged | |
2206 movff DM_flags_att2_det,DM_flags_att2_ack ; - ... | |
2207 movff DM_flags_att3_det,DM_flags_att3_ack ; - ... | |
2208 bra divemode_option_ackn_common ; - update screen | |
2209 | |
2210 divemode_option_ackn_advc: | |
2211 movff DM_flags_advc_det,DM_flags_advc_ack ; memorize active advices as acknowledged | |
2212 ;bra divemode_option_ackn_common ; update screen | |
2213 | |
2214 divemode_option_ackn_common: | |
2215 call menuview_toggle_reset ; terminate pre-menu | |
2216 call divemode_check_sign ; compute if the advice / attention / warning sign shall be shown | |
2217 btfsc FLAG_TFT_sign_show ; shall show the advice / attention / warning sign? | |
2218 goto TFT_divemode_sign_show ; YES - show sign and return | |
2219 goto TFT_divemode_sign_clear ; NO - clear sign and return | |
2220 | |
2221 | |
2222 ; item 3: enter dive mode menu | |
2223 ; | |
2224 divemode_option_divemenu: | |
2225 btfss divemode ; in dive mode? | |
2226 goto menuview_toggle_reset ; NO - block menu, terminate the pre-menu | |
2227 call TFT_clear_divemode_menu ; YES - clear menu area | |
2228 bcf dive_pre_menu ; - set pre-menu as not shown anymore | |
2229 goto do_main_divemenu ; - hand over to menu processor | |
2230 | |
2231 | |
2232 ; item 4: enter cave mode menu | |
2233 ; | |
2234 IFDEF _cave_mode | |
2235 divemode_option_cavemenu: | |
2236 btfss divemode ; in dive mode? | |
2237 goto menuview_toggle_reset ; NO - block menu, terminate the pre-menu | |
2238 call TFT_clear_divemode_menu ; YES - clear menu area | |
2239 bcf dive_pre_menu ; - set pre-menu as not shown anymore | |
2240 goto do_main_cavemenu ; - hand over to menu processor | |
2241 ENDIF | |
2242 | |
2243 | |
2244 ; item 5: quit simulator mode | |
2245 ; | |
2246 divemode_option_sim_quit: | |
2247 clrf simulatormode_depth ; set target depth to zero | |
2248 bsf quit_simulatormode ; request ISR to end simulator mode | |
2249 call menuview_toggle_reset ; terminate the pre-menu | |
2250 btfsc FLAG_apnoe_mode ; in apnoe mode? | |
2251 bcf divemode ; YES - force end of dive mode | |
2252 return ; done | |
2253 | |
2254 | |
2255 ; item 6: simulator mode - descent 1 meter | |
2256 ; | |
2257 divemode_option_sim_down: | |
2258 movlw ostc_depth_max-1 ; load depth limit into WREG | |
2259 cpfsgt simulatormode_depth ; simulated depth < limit ? | |
2260 incf simulatormode_depth,F ; YES - increment simulated depth | |
2261 return ; done | |
2262 | |
2263 | |
2264 ; item 7: simulator mode - ascent 1 meter | |
2265 ; | |
2266 divemode_option_sim_up: | |
2267 tstfsz simulatormode_depth ; simulated depth > 0 ? | |
2268 decf simulatormode_depth,F ; YES - decrement simulated depth | |
2269 return ; done | |
2270 | |
2271 | |
2272 ; item 8: simulator mode - +5 min | |
2273 ; | |
2274 divemode_option_sim_time: | |
2275 movff char_I_sim_advance_time,WREG ; get mailbox content | |
2276 tstfsz WREG ; mailbox clear (=0) ? | |
2277 return ; NO - still having a pending +5' request, refuse new request | |
2278 bra advance_time ; YES - advance time and return | |
2279 | |
2280 | |
2281 ; item 9: quit apnoe dive | |
2282 ; | |
2283 divemode_option_apnoe_quit: | |
2284 btfsc sensor_override_active ; in simulator mode? | |
2285 bra divemode_option_sim_quit ; YES - use simulator quit procedure | |
2286 bcf divemode ; NO - force end of dive mode | |
2287 return ; - done | |
2288 | |
2289 | |
2290 ; item 10: reset stopwatch and avg depth (gauge mode only) | |
2291 ; | |
2292 divemode_option_gauge_reset: | |
2293 bsf request_reset_avg ; request reset of average depth | |
2294 goto menuview_toggle_reset ; terminate pre-menu and return | |
2295 | |
2296 | |
2297 ; item 11: set bearing | |
2298 ; | |
623 | 2299 IFDEF _compass |
634 | 2300 divemode_option_course: |
2301 MOVII compass_heading_shown,compass_bearing | |
2302 bsf compass_bearing_set ; set flag to show heading | |
2303 goto menuview_toggle_reset ; terminate the pre-menu and return | |
623 | 2304 ENDIF |
634 | 2305 |
2306 | |
2307 ; item 12: switch layout | |
2308 ; | |
2309 divemode_option_layout: | |
2310 call menuview_toggle_reset ; terminate the pre-menu | |
2311 call TFT_ClearScreen ; clear the whole screen | |
2312 btg alt_layout_active ; toggle layout | |
2313 | |
2314 bcf depth_color_last ; set warning or attention on the depth not shown | |
2315 bcf depth_inverse_last ; set depth displayed in inverse as not shown | |
2316 bcf sign_shown ; set warning/attention/advice sign not shown | |
2317 bcf velocity_active_num ; set numerical vertical velocity display not shown | |
2318 bcf velocity_active_vsi ; set vertical vertical velocity display not shown | |
2319 bcf safety_stop_active ; set safety stop not shown | |
2320 | |
2321 bsf FLAG_TFT_divemode_mask ; request redraw of dive screen mask | |
2322 bsf FLAG_TFT_divetime ; request redraw of dive time | |
2323 bsf FLAG_TFT_depth_current ; request redraw of current depth | |
2324 bsf FLAG_TFT_depth_maximum ; request redraw of maximum depth | |
2325 bsf FLAG_TFT_active_gas_divemode; request redraw of gas and setpoint | |
2326 bsf FLAG_TFT_temperature ; request redraw of temperature | |
2327 bsf FLAG_TFT_customview_callup ; request redraw of custom view | |
2328 | |
2329 goto request_redraw_NDL_deco_data; request redraw of NDL/deco data and return | |
2330 | |
2331 | |
2332 ;----------------------------------------------------------------------------- | |
2333 ; Helper Function - advance Time by 5 Minutes (Simulator Mode) | |
2334 ; | |
2335 advance_time: | |
2336 ; advance tissues pressures and deco obligation by 5 minutes | |
2337 movlw .5 ; + 5 minutes | |
2338 movff WREG,char_I_sim_advance_time ; copy to mailbox | |
2339 call restart_deco_engine ; condition deco engine to execute the +5 minutes | |
2340 | |
2341 bcf count_divetime ; stop dive time incrementing in ISR | |
2342 ADDLI .5,counted_divetime_mins ; add 5 minutes to counted_divetime_mins | |
2343 ADDLI .300,total_divetime_secs ; add 5 minutes (300 seconds) to total_divetime_secs | |
2344 bsf count_divetime ; continue dive time incrementing in ISR | |
2345 | |
2346 ADDLI .300,divesecs_avg_trip ; add 5 minutes (300 seconds) to resettable time accumulator | |
2347 ADDLI .300,divesecs_avg_total ; add 5 minutes (300 seconds) to total time accumulator | |
2348 | |
2349 MOVII pressure_rel_cur_cached,xB ; calculate 300 x depth in mbar (300 = 5 min * 60 sec/min) | |
2350 MOVLI .300,xA ; ... | |
2351 call mult16x16 ; xC = xA * xB | |
2352 | |
2353 movf xC+0,W ; add to the resettable depth accumulator | |
2354 addwf pressure_rel_accu_trip+0,F ; ... | |
2355 movf xC+1,W ; ... | |
2356 addwfc pressure_rel_accu_trip+1,F ; ... | |
2357 movf xC+2,W ; ... | |
2358 addwfc pressure_rel_accu_trip+2,F ; ... | |
2359 movf xC+3,W ; ... | |
2360 addwfc pressure_rel_accu_trip+3,F ; ... | |
2361 | |
2362 movf xC+0,W ; add to the total depth accumulator | |
2363 addwf pressure_rel_accu_total+0,F ; ... | |
2364 movf xC+1,W ; ... | |
2365 addwfc pressure_rel_accu_total+1,F ; ... | |
2366 movf xC+2,W ; ... | |
2367 addwfc pressure_rel_accu_total+2,F ; ... | |
2368 movf xC+3,W ; ... | |
2369 addwfc pressure_rel_accu_total+3,F ; ... | |
2370 | |
2371 IFDEF _cave_mode | |
2372 ; update backtracking data | |
2373 btfss cave_mode ; cave mode switched on? | |
2374 bra divemode_option_sim_time_exit ; NO - skip backtracking depth recording | |
2375 btfsc dive_turned ; YES - dive turned? | |
2376 bra divemode_option_sim_time_exit ; YES - skip backtracking depth recording | |
2377 ;bra divemode_option_sim_time_exec ; NO - update backtracking depth recording | |
2378 | |
2379 divemode_option_sim_time_exec: | |
2380 movff backtrack_deltatime,hi ; backup time elapsed since last depth recording | |
2381 movlw .5 ; configure 5 minutes | |
2382 movwf lo ; use lo as loop counter | |
2383 | |
2384 divemode_option_sim_time_loop: | |
2385 call write_backtrack_1min_depth ; store a backtracking depth data set | |
2386 btfsc backtrack_entire_full ; backtracking storage entirely used up? | |
2387 bra divemode_option_sim_time_exit ; YES - abort backtracking depth recording | |
2388 decfsz lo,F ; NO - decrement loop counter, did it became zero? | |
2389 bra divemode_option_sim_time_loop ; NO - loop | |
2390 ;bra divemode_option_sim_time_done ; YES - done | |
2391 | |
2392 divemode_option_sim_time_done: | |
2393 movff hi,backtrack_deltatime ; restore time elapsed since last depth recording | |
2394 ENDIF ; _cave_mode | |
2395 | |
2396 divemode_option_sim_time_exit: | |
2397 return ; done (leaving option avail for repeated selection) | |
2398 | |
2399 | |
2400 ;----------------------------------------------------------------------------- | |
2401 ; Change Gas / Diluent | |
2402 ; | |
631 | 2403 gas_switch_common: |
634 | 2404 bcf request_gas_change ; clear request flag |
623 | 2405 IFDEF _ccr_pscr |
634 | 2406 btfss request_back_to_loop ; is a switchback from OC bailout to loop requested? |
2407 bra gas_switched_common0 ; NO - continue with checking if selected gas is valid | |
2408 bcf request_back_to_loop ; YES - clear flag | |
2409 movff active_dil,menu_pos_cur ; - reload last diluent | |
2410 bra gas_switched_common1 ; - continue with common part | |
623 | 2411 ENDIF |
582 | 2412 gas_switched_common0: |
634 | 2413 tstfsz menu_pos_cur ; menu_pos_cur = 0 ? |
2414 bra gas_switched_common1 ; NO - valid gas | |
2415 return ; YES - something went wrong, invalid gas, abort | |
560 | 2416 gas_switched_common1: |
634 | 2417 movf menu_pos_cur,W ; get selected gas into WREG (1-5) |
623 | 2418 IFDEF _ccr_pscr |
634 | 2419 btfsc FLAG_oc_mode ; in OC mode? |
2420 bra gas_switched_common_OC ; YES | |
2421 btfsc bailout_mode ; in bailout? | |
2422 bra gas_switched_common_OC ; YES | |
2423 gas_switched_common_loop: ; NO to both - must be loop mode then | |
2424 call setup_dil_registers ; set up real tissues with WREG = diluent 1-6 | |
2425 call deco_setup_cc_diluents ; set up deco planning with WREG = diluent 1-6 | |
2426 bra gas_switched_common3 ; continue with common part | |
631 | 2427 ENDIF ; _ccr_pscr |
634 | 2428 |
604 | 2429 gas_switched_common_OC: |
634 | 2430 call setup_gas_registers ; set up real tissues with WREG = gas 1-6 |
2431 call deco_setup_oc_gases ; set up deco planning with WREG = gas 1-6 | |
2432 ;bra gas_switched_common3 ; continue with common part | |
2433 | |
560 | 2434 gas_switched_common3: |
605 | 2435 banksel int_O_breathed_ppO2 |
2436 bcf int_O_breathed_ppO2+1,int_low_flag ; | clear all flags that control color-coding | |
2437 bcf int_O_breathed_ppO2+1,int_high_flag ; | to have the new gas initially displayed in | |
2438 bcf int_O_breathed_ppO2+1,int_attention_flag ; | memo color instead of a warning or attention | |
2439 bcf int_O_breathed_ppO2+1,int_warning_flag ; | color that belonged to the previous gas | |
2440 banksel common | |
631 | 2441 bsf FLAG_TFT_active_gas_divemode ; redraw gas/setpoint/diluent |
2442 bsf FLAG_TFT_temperature ; redraw temperature | |
2443 bsf event_occured ; set global event flag | |
623 | 2444 IFDEF _ccr_pscr |
631 | 2445 btfsc bailout_mode ; in bailout mode? |
2446 bsf event_bailout ; YES - set bailout event | |
2447 btfss bailout_mode ; in bailout mode? | |
623 | 2448 ENDIF |
631 | 2449 bsf event_gas_change ; (NO) - set gas change event (normal change) |
2450 goto restart_deco_engine_wo_ceiling ; abort running deco calculations and restart (and return) | |
2451 | |
2452 | |
634 | 2453 ;----------------------------------------------------------------------------- |
2454 ; Reload the current Gas / Diluent | |
2455 ; | |
631 | 2456 gas_update_common: |
2457 bcf request_gas_update ; reset the request flag | |
2458 movf active_gas,W ; load WREG with currently used gas | |
2459 IFDEF _ccr_pscr | |
2460 btfsc FLAG_oc_mode ; in OC mode? | |
2461 bra gas_switched_common_OC ; YES - reload OC gases | |
2462 btfsc bailout_mode ; NO - in bailout? | |
2463 bra gas_switched_common_OC ; YES - reload OC gases | |
2464 movf active_dil,W ; NO - load WREG with currently used diluent | |
2465 bra gas_switched_common_loop ; - set up diluent gases | |
2466 ELSE | |
2467 bra gas_switched_common_OC ; reload OC gases | |
2468 ENDIF | |
560 | 2469 |
634 | 2470 |
2471 ;----------------------------------------------------------------------------- | |
2472 ; Toggle GF/aGF (finalization) | |
2473 ; | |
2474 divemodemode_togglegf: | |
2475 bcf request_toggle_GF ; clear request flag | |
2476 goto restart_deco_engine ; restart the deco engine and return | |
2477 | |
2478 | |
2479 ;----------------------------------------------------------------------------- | |
2480 ; Set a Marker in the Dive Profile | |
2481 ; | |
2482 set_logbook_marker: | |
2483 bcf request_set_marker ; clear request flag | |
2484 movlw d'6' ; set type of alarm: manual marker | |
2485 movwf alarm_type ; copy to alarm register | |
2486 bsf event_occured ; set event flag | |
631 | 2487 return ; done |
0 | 2488 |
634 | 2489 |
2490 ;----------------------------------------------------------------------------- | |
604 | 2491 ; Find the best gas and diluent for the current depth |
2492 ; and check if a gas/diluent change is to be advised. | |
2493 ; | |
2494 ; Output: best_gas_number : number of best gas, 0= none avail, 255= not computed | |
2495 ; best_dil_number : number of best dil, 0= none avail, 255= not computed | |
2496 ; better_gas_available : flag indicating if a change is advised | |
2497 ; better_dil_available : flag indicating if a change is advised | |
2498 ; | |
2499 ; | |
2500 ; in CCR and pSCR mode: - checks both, gases and diluents for respective best gas / best diluent | |
2501 ; - if not in bailout, sets better_dil_available on diluents | |
2502 ; - if in bailout, sets better_gas_available on OC gases | |
2503 ; | |
2504 ; in OC mode : - checks only gases for best gas | |
2505 ; - sets better_gas_available on OC gases | |
0 | 2506 ; |
628 | 2507 global check_gas_best |
604 | 2508 check_gas_best: |
623 | 2509 btfsc FLAG_gauge_mode ; in gauge mode? |
2510 return ; YES - done | |
2511 | |
2512 MOVII pressure_abs_10,xA ; copy absolute pressure / 10 into xA:2, will be used by ppO2 min/max checks later | |
2513 | |
2514 ; compute max. allowed deco ppO2 | |
2515 movff char_I_ppO2_max_deco,WREG ; max ppO2 [cbar] for deco phase | |
2516 mullw .100 ; compute max ppO2 * 100, result is in 0.1 mbar | |
2517 ADDLI ppO2_margin_on_max,PROD ; add ppO2 margin on max value to compensate for surface pressures > 1000 hPa | |
2518 MOVII PROD,ppO2_max_deco ; store as deco ppO2 max | |
2519 | |
2520 ; compute max. allowed default ppO2 | |
604 | 2521 movff char_O_deco_info,lo ; bank-safe copy of deco info vector |
628 | 2522 btfss lo,deco_mode ; is the ppO2 deco limit enabled? |
623 | 2523 bra check_gas_best_1 ; NO - compute default ppO2 max |
2524 MOVII ppO2_max_deco,ppO2_max_default ; YES - copy default ppO2 max from deco max. | |
2525 bra check_gas_best_2 ; - continue with common part | |
2526 | |
2527 check_gas_best_1: | |
2528 movff char_I_ppO2_max_work,WREG ; max ppO2 [cbar] for working phase | |
2529 mullw .100 ; compute max ppO2 * 100, result is in 0.1 mbar | |
2530 ADDLI ppO2_margin_on_max,PROD ; add ppO2 margin on max value to compensate for surface pressures > 1000 hPa | |
2531 MOVII PROD,ppO2_max_default ; store as default ppO2 max | |
2532 | |
2533 check_gas_best_2: | |
2534 | |
2535 IFDEF _ccr_pscr | |
604 | 2536 ; check dive mode |
2537 btfsc FLAG_oc_mode ; in OC mode? | |
2538 bra check_gas_best_gas ; YES - skip diluents, check for best gas only | |
2539 | |
2540 check_gas_best_dil: | |
2541 ; set minimum ppO2 required | |
2542 movff char_I_ppO2_min,WREG ; min ppO2 for pure diluent in CCR mode (default) | |
2543 btfsc FLAG_pscr_mode ; in pSCR mode? | |
623 | 2544 movff char_I_ppO2_min_loop,WREG ; YES - replace by min ppO2 for pure diluent in pSCR mode |
2545 mullw .100 ; min ppO2 * 100, result in 0.1 mbar | |
2546 MOVII PROD,ppO2_min ; store in ppO2_min | |
631 | 2547 ; check diluents |
604 | 2548 lfsr FSR1,opt_dil_O2_ratio ; set base address for diluent arrays |
631 | 2549 movff active_dil,lo ; set number of currently used diluent |
2550 ; preset result to nothing found | |
2551 clrf best_gas_num ; initialize best diluent to 0 = none found yet | |
2552 setf best_gas_depth ; initialize change depth to 255 = any one will be better | |
2553 ; check if current diluent is usable | |
2554 movff lo,check_gas_num ; check if the current diluent is usable | |
2555 rcall check_gas_best_common ; if yes, the current diluent will become the best diluent found so far | |
2556 rcall check_gas_best_all ; check if any other diluent is better | |
604 | 2557 ; store result |
2558 movff best_gas_num,best_dil_number ; store new best diluent found (1-5 or 0 of no usable diluent available) | |
2559 ; check if change advices shall be given in general | |
623 | 2560 btfsc bailout_mode ; in bailout? |
604 | 2561 bra check_gas_best_gas ; YES - no better diluent advice when in bailout |
2562 check_gas_best_dil1: | |
2563 ; check if a change advice shall be given right now | |
631 | 2564 bcf better_dil_available ; default to no better diluent found |
604 | 2565 movf best_dil_number,W ; load number of best diluent into WREG (1-5) |
2566 bz check_gas_best_dil3 ; has a best diluent been found at all? NO - nothing to signal for | |
2567 cpfseq active_dil ; is this the currently used diluent? | |
631 | 2568 bra check_gas_best_dil2 ; NO - a better diluent has been found |
604 | 2569 bra check_gas_best_dil3 ; YES - no need to signal a better diluent if this diluent is already in use |
2570 check_gas_best_dil2: | |
634 | 2571 btfsc warn_det_sensors_lost ; all sensors lost? |
604 | 2572 bra check_gas_best_dil3 ; YES - suppress better diluent prompt in this case |
2573 ; not using the best gas - show better diluent hint whenever a better diluent is available | |
2574 bsf better_dil_available ; signal that a better diluent is available | |
2575 bsf FLAG_TFT_active_gas_divemode ; redraw gas/setpoint/diluent | |
2576 check_gas_best_dil3: | |
2577 btfss better_dil_available ; shall a better diluent be signaled for? | |
623 | 2578 bcf better_dil_blinking ; NO - clear blinking flag |
631 | 2579 ;bra check_gas_best_gas ; ; continue with checking for best bailout gas |
623 | 2580 ENDIF ; _ccr_pscr |
2581 | |
631 | 2582 |
604 | 2583 check_gas_best_gas: |
2584 ; set minimum ppO2 required | |
628 | 2585 movff char_I_ppO2_min,WREG ; min ppO2 for OC and bailout |
623 | 2586 mullw .100 ; min ppO2 * 100, result in 0.1 mbar |
2587 MOVII PROD,ppO2_min ; store in ppO2_min | |
631 | 2588 ; check gases |
604 | 2589 lfsr FSR1,opt_gas_O2_ratio ; set base address for gas arrays |
631 | 2590 movff active_gas,lo ; set number of currently used gas |
2591 ; preset result to nothing found | |
2592 clrf best_gas_num ; initialize best gas to 0 = none found yet | |
2593 setf best_gas_depth ; initialize change depth to 255 = any one will be better | |
2594 ; check if current gas is usable | |
2595 movff lo,check_gas_num ; check if the current gas is usable | |
2596 rcall check_gas_best_common ; if yes, the current gas will become the best gas found so far | |
2597 rcall check_gas_best_all ; check if any other gas is better | |
604 | 2598 ; store result |
2599 movff best_gas_num,best_gas_number ; store new best gas found (1-5 or 0 of no usable gas available) | |
631 | 2600 IFDEF _ccr_pscr |
604 | 2601 ; check if change advices shall be given in general |
2602 btfsc FLAG_oc_mode ; in OC mode? | |
631 | 2603 bra check_gas_best_gas1 ; YES - give advice |
2604 btfsc bailout_mode ; NO - in bailout? | |
2605 bra check_gas_best_gas1 ; YES - give advice | |
2606 return ; NO - no better (OC) gas advice when not in OC or bailout mode | |
2607 ENDIF ; _ccr_pscr | |
604 | 2608 check_gas_best_gas1: ; check if we are already on the best gas |
2609 ; check if a change advice shall be given right now | |
631 | 2610 bcf better_gas_available ; default to no better gas found |
604 | 2611 movf best_gas_number,W ; load number of best gas into WREG (1-5) |
2612 bz check_gas_best_gas3 ; has a best gas been found at all? NO - nothing to signal for | |
2613 cpfseq active_gas ; is this the currently used gas? | |
631 | 2614 bra check_gas_best_gas2 ; NO - a better gas has been found |
604 | 2615 bra check_gas_best_gas3 ; YES - no need to signal a better gas if this gas is already in use |
2616 check_gas_best_gas2: | |
2617 ; not using the best gas - show better gas hint whenever a better gas is available | |
2618 bsf better_gas_available ; YES - signal that a better gas is available | |
2619 bsf FLAG_TFT_active_gas_divemode ; YES - redraw gas/setpoint/diluent | |
2620 check_gas_best_gas3: | |
2621 btfss better_gas_available ; shall a better gas be signaled for? | |
623 | 2622 bcf better_gas_blinking ; NO - clear blinking flag |
582 | 2623 return |
0 | 2624 |
631 | 2625 |
2626 check_gas_best_all: | |
2627 clrf check_gas_num ; increment comes first, so initialize with zero | |
2628 check_gas_best_loop: | |
2629 incf check_gas_num,F ; increment number of gas to check | |
2630 movf lo,W ; copy number of currently used gas to WREG | |
2631 cpfseq check_gas_num ; gas to be checked = currently used gas ? | |
2632 rcall check_gas_best_common ; NO - check the gas | |
2633 movlw NUM_GAS ; get total number of gases | |
2634 cpfseq check_gas_num ; reached last gas? | |
2635 bra check_gas_best_loop ; NO - loop | |
2636 return ; YES - done | |
2637 | |
2638 | |
604 | 2639 check_gas_best_common: ; with gas to be checked in check_gas_num (1-5) |
634 | 2640 ; and current gas in lo (1-5) |
604 | 2641 ; |
2642 ; Memory Map: | |
2643 ; --------------------------------------------------------------------------------------- | |
2644 ; opt_gas_O2_ratio res 5 ; base address for gases | |
2645 ; opt_dil_O2_ratio res 5 ; base address for diluents | |
2646 ; opt_gas_He_ratio res 5 ; (not needed here) | |
2647 ; opt_dil_He_ratio res 5 ; (not needed here) | |
2648 ; opt_gas_type res 5 ; has offset of 20 bytes from base address for gases | |
2649 ; opt_dil_type res 5 ; has offset of 20 bytes from base address for diluents | |
2650 ; opt_gas_change res 5 ; has offset of 10 bytes from opt_gas_type | |
2651 ; opt_dil_change res 5 ; has offset of 10 bytes from opt_dil_type | |
2652 | |
2653 ; get gas data | |
2654 decf check_gas_num,W ; (1-5) -> (0-4) into WREG to be used as index | |
623 | 2655 movff PLUSW1,check_gas_O2_ratio ; copy O2 ratio (%) of current gas/dil to check_gas_O2_ratio |
604 | 2656 addlw .20 ; add offset of 20 bytes to index type in opt_gas_type/opt_dil_type |
623 | 2657 movff PLUSW1,check_gas_type ; copy type of current gas/dil to check_gas_type (0=disabled, 1=first, 2=travel/normal, 3=deco/-) |
604 | 2658 addlw .10 ; add offset of 10 bytes to index change depth in opt_gas_change/opt_dil_change |
623 | 2659 movff PLUSW1,check_gas_depth ; copy change depth of current gas/dil to check_gas_depth |
2660 MOVII ppO2_max_default,sub_b ; select default ppO2 max for first / travel / normal gas | |
628 | 2661 ; check if the gas is the current gas |
2662 movf check_gas_num,W ; get the number of the gas to be checked (1-5) | |
2663 cpfseq lo ; is this the currently used gas? | |
2664 bra check_gas_best_common0 ; NO - do the disabled & deco gas checks | |
2665 bra check_gas_best_common3 ; YES - a gas in use overrides disabled and deco status | |
2666 check_gas_best_common0: | |
623 | 2667 ; check if gas is available (i.e. not disabled) |
631 | 2668 btfsc check_gas_type,gas_lost ; gas/dil lost? |
2669 return ; YES - skip as not available any more | |
2670 btfsc check_gas_type,gas_staged ; gas/dil staged? | |
2671 return ; YES - skip as currently not available | |
623 | 2672 tstfsz check_gas_type ; type = disabled (0) ? |
2673 bra check_gas_best_common1 ; NO - continue checks | |
631 | 2674 return ; YES - skip as not available at all |
623 | 2675 check_gas_best_common1: |
2676 ; skip deco gases (type=3) if there are no stops, but include them when in bailout mode | |
2677 movlw .3 ; coding for deco gas | |
2678 cpfseq check_gas_type ; type = deco (3) ? | |
2679 bra check_gas_best_common3 ; NO - first or travel/normal then, ok to use | |
631 | 2680 IFDEF _ccr_pscr |
623 | 2681 btfsc bailout_mode ; YES - in bailout? |
2682 bra check_gas_best_common2 ; YES - ok to use (using deco gases is always allowed when in bailout) | |
631 | 2683 ENDIF |
2684 TSTOSS opt_ext_stops ; NO - extended stops enabled? | |
2685 bra check_gas_best_common1b ; NO - only ok if in deco region | |
2686 ;bra check_gas_best_common1a ; YES - only ok if in deco mode | |
623 | 2687 check_gas_best_common1a: |
628 | 2688 movff char_O_deco_info,WREG ; get deco info vector |
2689 btfss WREG,deco_mode ; are we in deco mode? | |
2690 return ; NO - skip deco gas while not in deco mode | |
2691 bra check_gas_best_common2 ; YES - deco gases allowed | |
2692 check_gas_best_common1b: | |
2693 btfss deco_region ; are we in the deco region? | |
2694 return ; NO - skip deco gas while not in the deco region | |
2695 ;bra check_gas_best_common2 ; YES - deco gases allowed | |
623 | 2696 check_gas_best_common2: |
2697 MOVII ppO2_max_deco,sub_b ; replace by ppO2 max for a deco gas | |
2698 check_gas_best_common3: | |
604 | 2699 ; check if gas is usable, i.e. its change depth is below or equal to the current depth |
623 | 2700 movf depth_meter,W ; load current depth (in m) into WREG |
604 | 2701 cpfslt check_gas_depth ; change depth of checked gas < (shallower than) current depth? |
623 | 2702 bra check_gas_best_common4 ; NO - gas is usable |
604 | 2703 return ; YES - gas is not usable |
623 | 2704 check_gas_best_common4: |
604 | 2705 ; check if this gas is the first best gas candidate |
2706 movf best_gas_num,W ; get best gas found so far (1-5) or 0 if none found yet | |
2707 tstfsz WREG ; has a best gas candidate been found yet? | |
623 | 2708 bra check_gas_best_common5 ; YES - check if the new one is better than the one we have so far |
2709 bra check_gas_best_common6 ; NO - no need to do the above mentioned check | |
2710 check_gas_best_common5: | |
631 | 2711 ; check if the change depth of the checked gas is < (shallower) than the change depth of the best gas found so far |
604 | 2712 movf best_gas_depth,W ; load change depth of best gas so far into WREG |
631 | 2713 cpfslt check_gas_depth ; change depth of checked gas < (shallower than) change depth of best gas so far? |
2714 return ; NO - this gas is not better than the best already found | |
2715 ;bra check_gas_best_common6 ; YES - this gas is better, continue | |
623 | 2716 check_gas_best_common6: |
604 | 2717 ; check if the gas fits into the ppO2 limits |
623 | 2718 movff check_gas_O2_ratio,xB+0 ; xB = O2 ratio, xA is still loaded with (absolute pressure / 10) |
69 | 2719 clrf xB+1 |
623 | 2720 call mult16x16 ; xC = O2 ratio * (absolute pressure / 10), result in 0.1 mbar |
604 | 2721 ; check for very high ppO2 |
623 | 2722 tstfsz xC+2 ; O2_ratio * absolute pressure / 10 > 65536, i.e. ppO2 > 6.55 bar ? |
604 | 2723 return ; YES - gas is not usable |
623 | 2724 btfsc xC+1,7 ; ppO2 > 3.30 bar ? |
604 | 2725 return ; YES - gas is not usable |
623 | 2726 MOVII xC,sub_a ; NO - gas may be usable |
2727 ; check for high ppO2 | |
2728 call cmpU16 ; sub_a - sub_b | |
2729 btfss neg_flag ; within limit? | |
2730 return ; NO - too high, gas is not usable | |
604 | 2731 ; check for low ppO2 |
623 | 2732 MOVII ppO2_min,sub_b ; copy minimum ppO2 to sub_b |
2733 call cmpU16 ; sub_a - sub_b | |
604 | 2734 btfsc neg_flag ; within limit? |
2735 return ; NO - too low, gas is not usable | |
2736 ; we have a (new) best gas | |
631 | 2737 movff check_gas_num, best_gas_num ; YES - set checked gas (1-5) as best gas |
2738 movff check_gas_depth,best_gas_depth ; - memorize its change depth | |
2739 return ; - done | |
0 | 2740 |
634 | 2741 IFDEF _ccr_pscr |
2742 | |
2743 | |
2744 ;----------------------------------------------------------------------------- | |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
2745 ; Check for Auto-SP |
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
2746 ; |
634 | 2747 check_dive_autosp: |
640 | 2748 movf dive_ccr_mode,W ; =0: Fixed SP, =1: Sensor, =2: Auto SP |
2749 sublw .2 ; dive_ccr_mode = 2 (Auto SP)? | |
604 | 2750 bz check_dive_autosp2 ; YES - check |
2751 return ; NO - return for sensor or fixed mode | |
634 | 2752 |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
2753 check_dive_autosp2: |
640 | 2754 ; check for restart request |
2755 btfss restart_auto_sp ; shall restart from 1st SP? | |
2756 bra check_dive_autosp2a ; NO - skip next | |
2757 bcf restart_auto_sp ; YES - clear request flag | |
2758 bcf FLAG_SP2_used ; - flag SP 2, ... | |
2759 bcf FLAG_SP3_used ; - flag SP 3, ... | |
2760 bcf FLAG_SP4_used ; - flag SP 4, ... | |
2761 bcf FLAG_SP5_used ; - flag SP 5 as unused so far | |
2762 | |
2763 check_dive_autosp2a: | |
631 | 2764 ; check SP2 |
623 | 2765 btfsc FLAG_SP2_used ; SP 2 used so far? |
604 | 2766 bra check_dive_autosp3 ; YES - continue with SP 3 |
623 | 2767 movff opt_setpoint_change+1,lo ; NO - get depth in m |
604 | 2768 tstfsz lo ; - SP change depth = 0 ? |
640 | 2769 bra check_dive_autosp2b ; NO - continue |
604 | 2770 bra check_dive_autosp3 ; YES - continue with SP 3 |
640 | 2771 check_dive_autosp2b: |
604 | 2772 decf lo,W ; SP change depth -1 -> WREG |
623 | 2773 cpfsgt depth_meter ; current depth > change depth - 1 ? |
604 | 2774 bra check_dive_autosp3 ; NO - continue with SP 3 |
582 | 2775 ; auto switch to SP2 |
623 | 2776 movff opt_setpoint_cbar+1,char_I_const_ppO2 ; YES - use SP |
604 | 2777 rcall xmit_sp_set_flag ; - send SP to external devices |
623 | 2778 bsf FLAG_SP2_used ; - set SP 2 used flag |
634 | 2779 |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
2780 check_dive_autosp3: |
631 | 2781 ; check SP3 |
623 | 2782 btfsc FLAG_SP3_used ; SP 3 used so far? |
604 | 2783 bra check_dive_autosp4 ; YES - continue with SP 4 |
623 | 2784 movff opt_setpoint_change+2,lo ; NO - get depth in m |
604 | 2785 tstfsz lo ; - SP change depth = 0 ? |
2786 bra check_dive_autosp3a ; NO - continue | |
2787 bra check_dive_autosp4 ; YES - continue with SP 4 | |
560 | 2788 check_dive_autosp3a: |
604 | 2789 decf lo,W ; SP change depth -1 -> WREG |
623 | 2790 cpfsgt depth_meter ; current depth > change depth - 1 ? |
604 | 2791 bra check_dive_autosp4 ; NO - continue with SP 4 |
582 | 2792 ; auto switch to SP3 |
623 | 2793 movff opt_setpoint_cbar+2,char_I_const_ppO2 ; YES - use SP |
604 | 2794 rcall xmit_sp_set_flag ; - send SP to external devices |
623 | 2795 bsf FLAG_SP3_used ; - set SP 3 used flag |
634 | 2796 |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
2797 check_dive_autosp4: |
631 | 2798 ; check SP4 |
623 | 2799 btfsc FLAG_SP4_used ; SP 4 used so far? |
604 | 2800 bra check_dive_autosp5 ; YES - continue with SP 5 |
623 | 2801 movff opt_setpoint_change+3,lo ; NO - get depth in m |
604 | 2802 tstfsz lo ; - SP change depth = 0 ? |
2803 bra check_dive_autosp4a ; NO - continue | |
623 | 2804 bra check_dive_autosp5 ; YES - continue with SP 5 |
560 | 2805 check_dive_autosp4a: |
604 | 2806 decf lo,W ; SP change depth -1 -> WREG |
623 | 2807 cpfsgt depth_meter ; current depth > change depth - 1 ? |
604 | 2808 bra check_dive_autosp5 ; NO - continue with SP 5 |
582 | 2809 ; auto switch to SP4 |
623 | 2810 movff opt_setpoint_cbar+3,char_I_const_ppO2 ; YES - use SP |
604 | 2811 rcall xmit_sp_set_flag ; - send SP to external devices |
623 | 2812 bsf FLAG_SP4_used ; - set SP 4 used flag |
634 | 2813 |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
2814 check_dive_autosp5: |
631 | 2815 ; check SP5 |
623 | 2816 btfsc FLAG_SP5_used ; SP 5 used so far? |
604 | 2817 bra check_dive_autosp6 ; YES - done |
623 | 2818 movff opt_setpoint_change+4,lo ; NO - get depth in m |
604 | 2819 tstfsz lo ; - SP change depth = 0 ? |
2820 bra check_dive_autosp5a ; NO - continue | |
2821 bra check_dive_autosp6 ; YES - done | |
560 | 2822 check_dive_autosp5a: |
604 | 2823 decf lo,W ; SP change depth -1 -> WREG |
623 | 2824 cpfsgt depth_meter ; current depth > change depth - 1 ? |
604 | 2825 bra check_dive_autosp6 ; NO - done |
582 | 2826 ; auto switch to SP5 |
623 | 2827 movff opt_setpoint_cbar+4,char_I_const_ppO2 ; YES - use SP |
604 | 2828 rcall xmit_sp_set_flag ; - send SP to external devices |
623 | 2829 bsf FLAG_SP5_used ; - set SP 5 used flag |
634 | 2830 |
352
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
2831 check_dive_autosp6: |
634 | 2832 return ; done |
2833 | |
2834 | |
2835 ;----------------------------------------------------------------------------- | |
2836 ; Helper Function - transmit new Setpoint to external Electronics and flag Change | |
2837 ; | |
352
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
339
diff
changeset
|
2838 xmit_sp_set_flag: |
623 | 2839 IFDEF _external_sensor |
604 | 2840 call transmit_setpoint ; transmit current setpoint from WREG (in cbar) to external electronics |
623 | 2841 ENDIF |
2842 bsf event_occured ; set global event flag | |
2843 bsf event_SP_change ; set setpoint event flag | |
582 | 2844 return |
2845 | |
623 | 2846 ENDIF ; _ccr_pscr |
2847 | |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
2848 |
0 | 2849 ;============================================================================= |
634 | 2850 dmode2 CODE |
2851 ;============================================================================= | |
2852 | |
2853 | |
2854 ;----------------------------------------------------------------------------- | |
2855 ; Setup everything to enter OC Dive Mode | |
0 | 2856 ; |
604 | 2857 global dive_boot_oc |
0 | 2858 dive_boot_oc: |
631 | 2859 rcall get_first_gas_to_WREG ; get first gas (1-5) into WREG |
2860 rcall setup_gas_registers ; set-up of gas parameters of currently breathed gas (with WREG = gas 1-5) | |
2861 rcall deco_setup_oc_gases ; set-up of gas list for deco calculations (with WREG = gas 1-5) | |
634 | 2862 return ; done |
2863 | |
2864 | |
2865 ;----------------------------------------------------------------------------- | |
2866 ; Helper Function - get first Gas (1-5) into WREG | |
2867 ; | |
2868 global get_first_gas_to_WREG | |
2869 get_first_gas_to_WREG: | |
2870 lfsr FSR1,opt_gas_type ; load base address of the gas types | |
2871 clrf lo ; start with gas 0 | |
2872 get_first_gas_to_WREG2: | |
2873 movf lo,W ; set index | |
2874 movf PLUSW1,W ; get type of gas (0=Disabled, 1=First, 2=Travel, 3=Deco) | |
2875 sublw .1 ; is it of type First? | |
2876 bz get_first_gas_to_WREG3 ; YES - found the First gas | |
2877 incf lo,F ; NO - increment index | |
2878 movlw NUM_GAS+1 ; - get highest index+1 | |
2879 cpfseq lo ; - all gases checked? | |
2880 bra get_first_gas_to_WREG2 ; NO - not yet | |
2881 movlw .1 ; YES - default to gas 1 | |
2882 movff WREG,opt_gas_type+0 ; - force it to be of type First | |
2883 return ; - done | |
2884 get_first_gas_to_WREG3: | |
2885 movf lo,W ; copy index of gas found to be the First to WREG | |
2886 incf WREG,W ; turn index into gas number (0-4 -> 1-5) | |
2887 return ; done | |
2888 | |
2889 | |
2890 ;----------------------------------------------------------------------------- | |
2891 ; Helper Function - load currently breathed Gas into Deco Engine | |
2892 ; | |
2893 global setup_gas_registers | |
2894 setup_gas_registers: | |
2895 movwf active_gas ; set as current gas | |
2896 movlw .6 ; gas = gas6 ? | |
2897 cpfseq active_gas ; ... | |
2898 bra setup_gas_registers_15 ; NO - load gas 1-5 | |
2899 | |
2900 ; load gas 6 | |
2901 movff opt_gas6_O2_ratio,char_I_O2_ratio ; copy gas6 O2 ratio to deco engine | |
2902 IFDEF _helium | |
2903 movff opt_gas6_He_ratio,char_I_He_ratio ; copy gas6 H2 ratio to deco engine | |
2904 ENDIF | |
2905 movlw .3 ; declare gas6 as a deco gas | |
2906 movff WREG,char_I_current_gas_type ; copy gas type to deco engine | |
2907 movff depth_meter,char_I_gas6_depth ;set current depth as change depth | |
2908 bra setup_gas_registers_com ; continue with common part | |
2909 | |
2910 setup_gas_registers_15: | |
2911 lfsr FSR1,opt_gas_O2_ratio ; load base address of gas data | |
2912 decf active_gas,W ; set index to O2 ratio of current gas (1-5 -> 0-4) | |
2913 movff PLUSW1,char_I_O2_ratio ; copy O2 ratio to deco engine | |
2914 addlw .10 ; advance index from O2 ratio to He ratio | |
2915 IFDEF _helium | |
2916 movff PLUSW1,char_I_He_ratio ; copy He ratio to deco engine | |
2917 ENDIF | |
2918 addlw .10 ; advance index from He ratio to gas type | |
2919 movff PLUSW1,char_I_current_gas_type ; copy gas type (0=Disabled, 1=First, 2=Travel, 3=Deco) | |
2920 setup_gas_registers_com: | |
2921 movff char_O_main_status,lo ; working copy of char_O_main_status in bank common | |
2922 bcf lo,DECO_MODE_PSCR_FLAG ; clear the pSCR-mode flag (if applicable) | |
2923 bcf lo,DECO_MODE_LOOP_FLAG ; clear the loop/CCR-mode flag | |
2924 movff lo,char_O_main_status ; bank safe write-back of char_O_main_status | |
2925 movf active_gas,W ; reload WREG with gas 1-5 or 6 (important!) | |
2926 return ; done | |
2927 | |
2928 | |
2929 ;----------------------------------------------------------------------------- | |
2930 ; Helper Function - load OC Gases into Deco Engine (currently breathed gas in WREG) | |
2931 ; | |
2932 global deco_setup_oc_gases | |
2933 deco_setup_oc_gases: | |
2934 movff char_O_deco_status,lo ; get working copy of char_O_deco_status in bank common | |
2935 deco_setup_oc_gases_pre: ; entry point with lo preloaded | |
2936 movff WREG,char_I_current_gas_num ; set gas to start with when doing the deco calculations | |
2937 ; | |
2938 ; Memory Map: | |
2939 ; --------------------------------------------------------------------------------- | |
2940 ; opt_gas_O2_ratio res NUM_GAS | char_I_deco_O2_ratio res NUM_GAS | |
2941 ; opt_dil_O2_ratio res NUM_GAS | | |
2942 ; opt_gas_He_ratio res NUM_GAS | char_I_deco_He_ratio res NUM_GAS | |
2943 ; opt_dil_He_ratio res NUM_GAS | | |
2944 ; opt_gas_type res NUM_GAS | char_I_deco_gas_type res NUM_GAS | |
2945 ; opt_dil_type res NUM_GAS | | |
2946 ; opt_gas_change res NUM_GAS | char_I_deco_gas_change res NUM_GAS | |
2947 ; opt_dil_change res NUM_GAS | | |
2948 ; | |
2949 lfsr FSR2,char_I_deco_O2_ratio ; load FSR2 with base address of char_I_deco_O2_ratio | |
2950 ; FSR2 will step through all char_I_deco_... vars | |
2951 lfsr FSR1,opt_gas_O2_ratio ; load FSR1 with base address of opt_gas_O2_ratio | |
2952 rcall deco_setup_copy ; copy all OC O2 ratios | |
2953 lfsr FSR1,opt_gas_He_ratio ; load FSR1 with base address of opt_gas_He_ratio | |
2954 rcall deco_setup_copy ; copy all OC He ratios | |
2955 lfsr FSR1,opt_gas_type ; load FSR1 with base address of opt_gas_type | |
2956 rcall deco_setup_copy ; copy all gas types | |
2957 lfsr FSR1,opt_gas_change ; load FSR1 with base address of opt_gas_change | |
2958 rcall deco_setup_copy ; copy all gas change depths | |
2959 | |
2960 ; switch deco engine to oc mode | |
2961 bcf lo,DECO_MODE_PSCR_FLAG ; clear the pSCR-mode flag (may not be set, but never mind) | |
2962 bcf lo,DECO_MODE_LOOP_FLAG ; clear the loop/CCR-mode flag | |
2963 movff lo,char_O_deco_status ; bank safe write-back of char_O_deco_status | |
2964 return ; done | |
2965 | |
2966 | |
2967 ;----------------------------------------------------------------------------- | |
2968 ; Helper Function - dedicated Memory Copy | |
2969 deco_setup_copy: | |
2970 movlw NUM_GAS ; load loop counter with number of gases (5) | |
2971 deco_setup_copy_loop: | |
2972 movff POSTINC1,POSTINC2 ; copy from (FSR1) to (FSR2) | |
2973 decfsz WREG ; decrement loop counter and check if it became 0 | |
2974 bra deco_setup_copy_loop ; NO - not yet, loop | |
2975 return ; YES - done | |
2976 | |
0 | 2977 |
623 | 2978 |
2979 IFDEF _ccr_pscr | |
2980 | |
634 | 2981 ;----------------------------------------------------------------------------- |
2982 ; Setup everything to enter CCR/pSCR Dive Mode - Part 1 | |
2983 ; | |
604 | 2984 global dive_boot_cc |
0 | 2985 dive_boot_cc: |
631 | 2986 rcall get_first_dil_to_WREG ; get first diluent (1-5) into WREG |
2987 rcall setup_dil_registers ; set-up of diluent parameters for currently breathed diluent (with WREG = current diluent 1-5) | |
2988 rcall deco_setup_cc_diluents ; set-up of diluent list for deco calculations (with WREG = current diluent 1-5) | |
634 | 2989 return ; done |
2990 | |
2991 | |
2992 ;----------------------------------------------------------------------------- | |
2993 ; Helper Function - get first Diluent (1-5) into WREG | |
2994 ; | |
2995 global get_first_dil_to_WREG | |
2996 get_first_dil_to_WREG: ; gets first dil (1-5) into WREG | |
2997 lfsr FSR1,opt_dil_type ; load base address of the dil types | |
2998 clrf lo ; start with dil 0 | |
2999 get_first_dil_to_WREG2: | |
3000 movf lo,W ; set index | |
3001 movf PLUSW1,W ; get type of Dil (0=Disabled, 1=First, 2=Normal) | |
3002 sublw .1 ; is it of type First? | |
3003 bz get_first_dil_to_WREG3 ; YES - found the First dil | |
3004 incf lo,F ; NO - increment index | |
3005 movlw NUM_GAS+1 ; - get highest index+1 | |
3006 cpfseq lo ; - dils checked? | |
3007 bra get_first_dil_to_WREG2 ; NO - not yet | |
3008 movlw .1 ; YES - default to dil 1 | |
3009 movff WREG,opt_dil_type+0 ; - force it to be of type First | |
3010 return ; - done | |
3011 get_first_dil_to_WREG3: | |
3012 movf lo,W ; copy index of dil found to be the First to WREG | |
3013 incf WREG,W ; turn index into dil number (0-4 -> 1-5) | |
3014 return ; done | |
3015 | |
3016 | |
3017 ;----------------------------------------------------------------------------- | |
3018 ; Helper Function - load currently breathed Diluent into Deco Engine | |
3019 ; | |
3020 global setup_dil_registers | |
3021 setup_dil_registers: | |
3022 btfsc bailout_mode ; check if in bailout condition | --------------- FOR SAFETY ONLY -------------- | |
3023 bra setup_gas_registers ; revert to setting up OC gases in bailout condition | This branch should never happen to be taken... | |
3024 movwf active_dil ; set as current diluent | |
3025 movlw .6 ; diluent = gas6 ? | |
3026 cpfseq active_dil ; ... | |
3027 bra setup_dil_registers_15 ; NO - load diluent 1-5 | |
3028 | |
3029 ; load gas 6 | |
3030 movff opt_gas6_O2_ratio,char_I_O2_ratio ; copy gas6 O2 ratio to deco engine | |
3031 IFDEF _helium | |
3032 movff opt_gas6_He_ratio,char_I_He_ratio ; copy gas6 He ratio to deco engine | |
3033 ENDIF | |
3034 movlw .2 ; declare gas6 as a normal diluent | |
3035 movff WREG,char_I_current_gas_type ; copy gas type to deco engine | |
3036 movff depth_meter,char_I_gas6_depth ;set current depth as change depth | |
3037 bra setup_dil_registers_com ; continue with common part | |
3038 | |
3039 setup_dil_registers_15: | |
3040 lfsr FSR1,opt_dil_O2_ratio ; load base address of diluent data | |
3041 decf active_dil,W ; set index to O2 ratio of current diluent (1-5 -> 0-4) | |
3042 movff PLUSW1,char_I_O2_ratio ; copy O2 ratio to deco engine | |
3043 addlw .10 ; advance index from O2 ratio to He ratio | |
3044 IFDEF _helium | |
3045 movff PLUSW1,char_I_He_ratio ; copy He ratio to deco engine | |
3046 ENDIF | |
3047 addlw .10 ; advance index from He ratio to diluent type | |
3048 movff PLUSW1,char_I_current_gas_type ; copy diluent type (0=Disabled, 1=First, 2=Normal) | |
3049 setup_dil_registers_com: | |
3050 movff char_O_main_status,lo ; working copy of char_O_main_status in bank common | |
3051 bsf lo,DECO_MODE_LOOP_FLAG ; loop flag is set in both, CCR and pSCR mode | |
3052 bcf lo,DECO_MODE_PSCR_FLAG ; clear pSCR mode flag by default | |
3053 btfsc FLAG_pscr_mode ; check if we are in pSCR mode | |
3054 bsf lo,DECO_MODE_PSCR_FLAG ; YES - set additional flag for pSCR mode | |
3055 movff lo,char_O_main_status ; bank safe write-back of char_O_main_status | |
3056 movf active_dil,W ; reload WREG with diluent 1-5 or 6 (important!) | |
3057 return ; done | |
3058 | |
3059 | |
3060 ;----------------------------------------------------------------------------- | |
3061 ; Helper Function - load Diluents into Deco Engine (currently breathed dil in WREG) | |
3062 ; | |
3063 global deco_setup_cc_diluents | |
3064 deco_setup_cc_diluents: | |
3065 movff char_O_deco_status,lo ; working copy of char_O_deco_status in bank common | |
3066 deco_setup_cc_diluents_pre: ; entry point with lo preloaded | |
3067 btfsc bailout_mode ; check if in bailout condition | --------------- FOR SAFETY ONLY -------------- | |
3068 bra deco_setup_oc_gases_pre ; YES - revert to setting up OC gases | This branch should never happen to be taken... | |
3069 movff WREG,char_I_current_gas_num ; NO - set diluent to start with when doing the deco calculations | |
3070 ; | |
3071 ; Memory Map: | |
3072 ; --------------------------------------------------------------------------------- | |
3073 ; opt_gas_O2_ratio res NUM_GAS | | |
3074 ; opt_dil_O2_ratio res NUM_GAS | char_I_deco_O2_ratio res NUM_GAS | |
3075 ; opt_gas_He_ratio res NUM_GAS | | |
3076 ; opt_dil_He_ratio res NUM_GAS | char_I_deco_He_ratio res NUM_GAS | |
3077 ; opt_gas_type res NUM_GAS | | |
3078 ; opt_dil_type res NUM_GAS | char_I_deco_gas_type res NUM_GAS | |
3079 ; opt_gas_change res NUM_GAS | | |
3080 ; opt_dil_change res NUM_GAS | char_I_deco_gas_change res NUM_GAS | |
3081 ; | |
3082 lfsr FSR2,char_I_deco_O2_ratio ; load FSR2 with base address of char_I_deco_O2_ratio. | |
3083 ; FSR2 will step through all char_I_deco_... vars. | |
3084 lfsr FSR1,opt_dil_O2_ratio ; load FSR1 with base address of opt_dil_O2_ratio | |
3085 rcall deco_setup_copy ; copy all dil O2 ratios | |
3086 lfsr FSR1,opt_dil_He_ratio ; load FSR1 with base address of opt_dil_He_ratio | |
3087 rcall deco_setup_copy ; copy all dil He ratios | |
3088 lfsr FSR1,opt_dil_type ; load FSR1 with base address of opt_dil_type | |
3089 rcall deco_setup_copy ; copy all dil types | |
3090 lfsr FSR1,opt_dil_change ; load FSR1 with base address of opt_dil_change | |
3091 rcall deco_setup_copy ; copy all dil change depths | |
3092 ; switch to CCR / pSCR mode: | |
3093 bsf lo,DECO_MODE_LOOP_FLAG ; - loop flag is set in both, CCR and pSCR mode | |
3094 bcf lo,DECO_MODE_PSCR_FLAG ; - clear pSCR mode flag by default | |
3095 btfsc FLAG_pscr_mode ; - check if we are in pSCR mode | |
3096 bsf lo,DECO_MODE_PSCR_FLAG ; YES - set additional flag for pSCR mode | |
3097 movff lo,char_O_deco_status ; - bank safe write-back of char_O_deco_status | |
3098 return ; done | |
3099 | |
3100 | |
3101 ;----------------------------------------------------------------------------- | |
3102 ; Setup everything to enter CCR / pSCR Dive Mode - Part 2 | |
3103 ; | |
604 | 3104 dive_boot_cc_part2: |
560 | 3105 ; revoke sensors from usage if they do not have a valid calibration |
3106 bsf use_O2_sensor1 | |
3107 btfss sensor1_calibrated_ok | |
3108 bcf use_O2_sensor1 | |
634 | 3109 |
3110 bsf use_O2_sensor2 | |
560 | 3111 btfss sensor2_calibrated_ok |
3112 bcf use_O2_sensor2 | |
634 | 3113 |
3114 bsf use_O2_sensor3 | |
560 | 3115 btfss sensor3_calibrated_ok |
3116 bcf use_O2_sensor3 | |
623 | 3117 |
3118 IFDEF _external_sensor | |
604 | 3119 ; check for external HUD/ppO2 Monitor |
634 | 3120 btfss ext_input_optical ; do we have an optical input? |
604 | 3121 bra dive_boot_cc_part2_1 ; NO |
634 | 3122 btfsc sensor1_active ; YES - process flags from HUD/ppO2 Monitor |
623 | 3123 bsf use_O2_sensor1 ; - ... |
3124 btfsc sensor2_active ; - ... | |
3125 bsf use_O2_sensor2 ; - ... | |
3126 btfsc sensor3_active ; - ... | |
3127 bsf use_O2_sensor3 ; - ... | |
3128 ENDIF | |
3129 | |
604 | 3130 dive_boot_cc_part2_1: |
560 | 3131 ; In pSCR mode, only settings 0 (calculated ppO2) and 1 (ppO2 from sensors) are defined. |
604 | 3132 ; In case we still have 3 (auto SP) selected out of previous CCR mode, we reset to 0. |
634 | 3133 btfss FLAG_pscr_mode ; in pSCR mode? |
3134 bra dive_boot_cc_part2_2 ; NO | |
640 | 3135 movf dive_ccr_mode,W ; YES - get mode (=0: Fixed SP (CCR) / calculated SP (pSCR), =1: Sensor, =2: Auto SP) |
3136 sublw .2 ; dive_ccr_mode = 1 (Auto SP)? | |
634 | 3137 bnz dive_boot_cc_part2_2 ; NO - ok |
640 | 3138 clrf dive_ccr_mode ; YES - revert to calculated SP |
634 | 3139 |
604 | 3140 dive_boot_cc_part2_2: |
623 | 3141 bsf event_SP_change ; set setpoint event flag |
3142 | |
560 | 3143 ; Start with SP1 (CCR) or 0 (pSCR) as default. |
3144 ; If in sensor mode, this value will be overwritten by calc_deko_divemode_sensor | |
623 | 3145 clrf WREG ; pre-load WREG with setpoint value 0 for pSCR calculated |
3146 btfsc FLAG_ccr_mode ; in CCR mode? | |
3147 movff opt_setpoint_cbar+0,WREG ; YES - get value of setpoint 1 into WREG | |
582 | 3148 movff WREG,char_I_const_ppO2 ; write setpoint to deco engine |
634 | 3149 |
623 | 3150 IFDEF _external_sensor |
582 | 3151 call transmit_setpoint ; transmit current setpoint from WREG (in cbar) to external electronics |
634 | 3152 goto calc_deko_divemode_sensor ; process sensor readings and return |
623 | 3153 ELSE |
3154 return ; done | |
3155 ENDIF | |
3156 | |
3157 ENDIF ; _ccr_pscr | |
3158 | |
634 | 3159 |
623 | 3160 ;============================================================================= |
634 | 3161 dmode3 CODE |
3162 ;============================================================================= | |
3163 | |
3164 | |
3165 ;----------------------------------------------------------------------------- | |
3166 ; Initialize Dive Mode | |
3167 ; | |
0 | 3168 diveloop_boot: |
604 | 3169 ; do the basic initialization |
634 | 3170 call restart_set_modes_and_flags ; basic settings depending on deco mode |
3171 | |
3172 ; save on energy | |
3173 call I2C_sleep_compass ; stop accelerometer and compass | |
604 | 3174 |
623 | 3175 ; do an early initialization of all deco engine output variables to |
3176 ; avoid glitches in the display outputs during deco engine start-up | |
3177 call deco_init_output_vars; ; (C-code) | |
3178 banksel common ; back to bank common | |
3179 | |
634 | 3180 ; configure screen layout |
3181 TSTOSC opt_layout ; alternative layout enabled? | |
3182 bsf alt_layout_active ; YES - start with alternative layout | |
3183 | |
3184 ; configure tissue graphics | |
635
9a64914a8fca
3.10 re-release addressing some minor issues and language fixes
heinrichsweikamp
parents:
634
diff
changeset
|
3185 TSTOSC opt_tissue_graphics ; shall show: 0= pres+sat, 1= N2+He |
634 | 3186 bsf tissue_graphic_layout ; YES - show press+sat |
3187 TSTOSC char_I_model ; GF factors enabled? | |
3188 bsf tissue_graphic_gf ; YES - show GF lines | |
3189 | |
623 | 3190 ; reset max relative pressure (max depth) |
3191 bsf reset_max_pressure ; request ISR to reset the max pressure | |
3192 | |
640 | 3193 ; make working copy of opt_ccr_mode |
3194 movff opt_ccr_mode,dive_ccr_mode ; copy option setting | |
3195 | |
3196 | |
623 | 3197 IFDEF _min_depth_option |
3198 ; reset the resettable min/max relative pressure (trip-wise min/max depth) | |
3199 bsf reset_trip_pressure ; request ISR to reset the resettable min/max pressure | |
3200 ENDIF | |
3201 | |
604 | 3202 IFDEF _cave_mode |
623 | 3203 ; initialize the cave mode |
631 | 3204 bcf cave_mode ; disable cave mode by default |
3205 TSTOSC opt_cave_mode ; cave mode switched on? | |
3206 bsf cave_mode ; YES - enable cave mode | |
3207 | |
3208 bcf dive_turned ; dive is not turned yet | |
3209 bcf backtrack_almost_full ; backtracking storage is not almost full yet | |
3210 bcf backtrack_entire_full ; backtracking storage is not entirely full yet | |
3211 bsf waypoint_reached_first ; current waypoint is the first recorded waypoint | |
3212 bsf waypoint_reached_last ; current waypoint is the last recorded waypoint | |
3213 | |
3214 clrf backtrack_waypoint_num ; initialize the waypoint number | |
3215 clrf backtrack_waypoint_turn ; no turn point yet | |
3216 | |
3217 movlw .0 ; initialize backtracking index to first position in storage | |
3218 movff WREG,char_I_backtrack_index ; ... | |
3219 | |
3220 clrf depth_meter ; store initial depth data set with depth = surface | |
3221 call write_backtrack_1min_depth ; ... | |
3222 ENDIF ; _cave_mode | |
3223 | |
3224 ; base configuration of the deco engine | |
623 | 3225 clrf hi ; start with everything disabled |
631 | 3226 TSTOSC opt_ext_stops ; shall make extended stops? |
623 | 3227 bsf hi,DECO_EXTENDED_STOPS ; YES - enable extended stops |
604 | 3228 IFDEF _rx_functions |
623 | 3229 btfsc tr_functions_activated ; TR functions activated? |
3230 bsf hi,DECO_TR_FUNCTIONS ; YES - enable TR functions | |
604 | 3231 ENDIF |
631 | 3232 IFDEF _gas_contingency |
3233 ; set contingency mode on/off | |
3234 TSTOSC opt_gas_contingency_dive ; gas contingency for dive mode switched on? | |
3235 bsf hi,DECO_GAS_CONTINGENCY ; YES - activate gas contingency mode | |
3236 ENDIF ; _gas_contingency | |
604 | 3237 movff hi,char_O_main_status ; bank-safe copy to deco engine |
3238 | |
631 | 3239 clrf lo ; start with everything disabled |
3240 bsf lo,DECO_START_NORM ; set flag for doing a normal plan | |
3241 bsf lo,DECO_INITIALIZE ; set flag for initializing the deco engine | |
604 | 3242 movff lo,char_O_deco_status ; bank-safe copy back to deco engine |
0 | 3243 |
623 | 3244 ; disable "fast forward" function |
634 | 3245 movlw .0 ; set fast forward to zero |
3246 movff WREG,char_I_sim_advance_time; ... | |
623 | 3247 |
3248 ; write last stop depth to deco engine | |
631 | 3249 movff opt_last_stop,char_I_last_stop_depth |
623 | 3250 |
3251 ; initialize max depth for apnoe mode | |
634 | 3252 CLRI apnoe_max_pressure ; reset to zero |
623 | 3253 |
3254 ; reset minimum temperature, ISR-safe 2 byte copy | |
3255 SMOVII temperature_cur,temperature_min | |
3256 | |
3257 ; ISR-safe copy of start-of-dive date and time for logbook (6 bytes in total) | |
3258 SMOVSS rtc_year,start_year | |
3259 | |
3260 MOVII int_O_CNS_current,CNS_start ; save current CNS at beginning of dive, but | |
3261 bcf CNS_start+1,int_warning_flag ; without warning flag | |
3262 bcf CNS_start+1,int_attention_flag ; without attention flag | |
3263 | |
3264 ; save supersaturation at beginning of dive (only lower byte is used for value) | |
3265 movff int_O_lead_supersat+0,supersat_start | |
3266 | |
631 | 3267 clrf menu_pos_cur ; reset current menu position |
3268 clrf active_premenu ; no pre-menu task active | |
623 | 3269 |
3270 clrf safety_stop_countdown ; clear safety stop count-down | |
3271 | |
3272 CLRI last_pressure_velocity ; initialize last pressure for velocity calculation | |
3273 CLRI dive_timeout_timer ; initialize timeout counter | |
3274 | |
3275 movlw .1 ; initialize the sampling timer such that the 1st sampling ... | |
3276 movwf sampling_timer ; ... trigger will be given as soon as possible | |
3277 | |
3278 clrf message_page ; initialize message page counter | |
3279 clrf alarm_type ; clear all alarms | |
3280 | |
3281 ; clear the total dive average depth | |
3282 CLRI pressure_rel_avg_total ; average depth | |
3283 CLRI divesecs_avg_total ; time accumulator | |
3284 clrf pressure_rel_accu_total+0 ; depth accumulator | |
631 | 3285 clrf pressure_rel_accu_total+1 ; ... |
3286 clrf pressure_rel_accu_total+2 ; ... | |
3287 clrf pressure_rel_accu_total+3 ; ... | |
604 | 3288 |
3289 IFDEF _rx_functions | |
623 | 3290 |
3291 btfss tr_functions_activated ; TR functions activated? | |
604 | 3292 bra diveloop_boot_0 ; NO - skip TR function initialization |
623 | 3293 |
604 | 3294 banksel int_IO_pressure_value |
634 | 3295 |
3296 clrf WREG ; set WREG to coding for integer numbers -> data not available | |
3297 bsf WREG,int_not_avail_flag ; ... | |
623 | 3298 clrf int_IO_pressure_value+0 ; clear low byte of 1st pressure reading value |
3299 movwf int_IO_pressure_value+1 ; copy to high byte of 1st pressure reading value | |
3300 clrf int_IO_pressure_value+2 ; clear low byte of 2nd pressure reading value | |
3301 movwf int_IO_pressure_value+3 ; copy to high byte of 2nd pressure reading value | |
3302 clrf int_I_pressure_drop+0 ; clear low byte of 1st pressure drop value | |
3303 movwf int_I_pressure_drop+1 ; copy to high byte of 1st pressure drop value | |
3304 clrf int_I_pressure_drop+2 ; clear low byte of 2nd pressure drop value | |
3305 movwf int_I_pressure_drop+3 ; copy to high byte of 1st pressure drop value | |
604 | 3306 clrf char_I_pressure_gas+0 ; clear gas selection of 1st pressure reading |
3307 clrf char_I_pressure_gas+1 ; clear gas selection of 2nd pressure reading | |
3308 clrf char_I_pressure_age+0 ; clear age of 1st pressure reading | |
3309 clrf char_I_pressure_age+1 ; clear age of 2nd pressure reading | |
3310 clrf char_I_pressure_stat+0 ; clear status of 1st pressure reading | |
3311 clrf char_I_pressure_stat+1 ; clear status of 2nd pressure reading | |
623 | 3312 |
604 | 3313 banksel gas__last_1st ; select bank with vars for pressure drop calculation |
3314 setf gas__last_1st ; invalidate last gas of 1st reading | |
623 | 3315 setf gas__last_2nd ; invalidate last gas of 2nd reading |
3316 | |
604 | 3317 banksel common ; back to bank common |
623 | 3318 |
3319 ENDIF ; _rx_functions | |
3320 | |
604 | 3321 |
3322 diveloop_boot_0: | |
3323 setf best_gas_number ; initialize best gas as not computed yet (255) | |
623 | 3324 IFDEF _ccr_pscr |
604 | 3325 setf best_dil_number ; initialize best diluent as not computed yet (255) |
623 | 3326 ENDIF |
604 | 3327 |
3328 btfsc FLAG_oc_mode ; in OC mode? | |
634 | 3329 call dive_boot_oc ; YES - add OC mode settings |
604 | 3330 |
623 | 3331 IFDEF _ccr_pscr |
604 | 3332 btfsc FLAG_ccr_mode ; in CCR mode? |
634 | 3333 call dive_boot_cc ; YES - add CC mode settings |
604 | 3334 btfsc FLAG_ccr_mode ; in CCR mode? |
634 | 3335 call dive_boot_cc_part2 ; YES - add CC sensor and SP settings |
604 | 3336 |
3337 btfsc FLAG_pscr_mode ; in pSCR mode? | |
634 | 3338 call dive_boot_cc ; YES - add CC mode settings |
604 | 3339 btfsc FLAG_pscr_mode ; in pSCR mode? |
634 | 3340 call dive_boot_cc_part2 ; YES - add CC sensor and SP settings |
623 | 3341 ENDIF |
604 | 3342 |
631 | 3343 bcf bailout_mode ; not in bailout mode |
3344 | |
604 | 3345 call ghostwriter_short_header ; write short header with dive number into profile memory |
623 | 3346 call init_recording_params ; set up all the divisors for dive data recording |
3347 | |
3348 ; setup gas selector flag (required to have better gas working) | |
3349 bsf is_diluent_menu ; default to using diluents | |
3350 btfsc FLAG_ccr_mode ; in CCR mode? | |
3351 bra diveloop_boot_3 ; YES - default was right | |
3352 btfsc FLAG_pscr_mode ; in pSCR mode? | |
3353 bra diveloop_boot_3 ; YES - default was right | |
3354 bcf is_diluent_menu ; NO to both - revert to using OC gases | |
604 | 3355 |
3356 diveloop_boot_3: | |
582 | 3357 bcf LEDg ; switch off green LED / release reset to RX circuitry |
604 | 3358 bcf LEDr ; switch off red LED |
623 | 3359 |
3360 btfss sensor_override_active ; in simulator mode? | |
604 | 3361 call disable_rs232 ; NO - disable RS232 |
3362 | |
3363 IFDEF _screendump | |
623 | 3364 btfsc screen_dump_avail ; screen dump function enabled? |
3365 call enable_rs232 ; enable interface (also sets CPU speed to normal) | |
604 | 3366 ENDIF |
3367 | |
623 | 3368 clrf apnoe_surface_mins ; clear apnoe surface time, minutes (8 bit) |
3369 clrf apnoe_surface_secs ; clear apnoe surface time, seconds (8 bit) | |
3370 clrf apnoe_dive_mins ; clear apnoe dive time, minutes (8 bit) | |
3371 clrf apnoe_dive_secs ; clear apnoe dive time, seconds (8 bit) | |
604 | 3372 |
3373 return ; done with dive mode boot | |
3374 | |
3375 | |
3376 ;============================================================================= | |
634 | 3377 dmode4 CODE |
3378 ;============================================================================= | |
3379 | |
3380 | |
3381 ;----------------------------------------------------------------------------- | |
3382 ; Check all Sorts of Parameters and issue Warnings and Attentions if applicable | |
3383 ; | |
623 | 3384 divemode_check_warnings: |
604 | 3385 movlw .1 ; one message at a time in alternative layout |
623 | 3386 btfss alt_layout_active ; in alternative layout? |
3387 movlw .2 ; NO - two messages at a time in normal layout | |
634 | 3388 cpfsgt message_counter ; had more than 1 / 2 messages in the last round? |
623 | 3389 bra divemode_check_warnings1 ; NO - update messages every second |
3390 | |
3391 ; ; YES - update every 4 seconds: | |
631 | 3392 ; btfss timebase_1sec ; - on second 1 or 3 ? |
623 | 3393 ; return ; NO - no update in this cycle |
3394 ; btfss timebase_2sec ; YES - on second 3 ? | |
3395 ; return ; NO - no update in this cycle | |
3396 ; ;bra divemode_check_warnings1 ; YES - update messages | |
3397 | |
634 | 3398 ; YES - update every 2 seconds |
623 | 3399 btfsc timebase_1sec ; - on even second? |
3400 return ; NO - done | |
3401 ;bra divemode_check_warnings1 ; YES - update messages | |
3402 | |
3403 divemode_check_warnings1: | |
604 | 3404 clrf message_counter ; clear message counter |
3405 | |
3406 ; messages sorted by severity: highest severity warnings first, then attentions, advices and last info | |
3407 | |
3408 ; warnings for all modes | |
634 | 3409 call check_battery ; check battery status |
3410 rcall check_depth_limit ; check current depth | |
3411 call check_divetimeout ; check dive timeout | |
604 | 3412 |
623 | 3413 btfsc FLAG_apnoe_mode ; in apnoe mode? |
634 | 3414 bra divemode_check_warnings2 ; YES - skip deco mode checks |
623 | 3415 |
604 | 3416 btfsc FLAG_gauge_mode ; in gauge mode? |
634 | 3417 bra divemode_check_warnings2 ; YES - skip deco mode checks |
604 | 3418 |
3419 ; warnings applicable only in deco modes | |
631 | 3420 |
3421 IFDEF _cave_mode | |
3422 rcall check_cavemode ; check cave mode status | |
3423 ENDIF | |
3424 | |
634 | 3425 rcall check_display_ftts ; show fTTS time (or cave mode cTTS) |
3426 rcall check_ppO2 ; check ppO2 | |
0 | 3427 |
623 | 3428 IFDEF _external_sensor |
634 | 3429 rcall check_ext_sensors ; check external sensors |
623 | 3430 ENDIF |
582 | 3431 |
604 | 3432 rcall check_outside ; check of ZHL16 model violation |
560 | 3433 |
634 | 3434 IFDEF _ccr_pscr |
623 | 3435 btfsc FLAG_ccr_mode ; in CCR mode? |
3436 rcall check_OC_gas_avail ; YES - check if a breathable OC (bailout) gas is available | |
3437 btfsc FLAG_pscr_mode ; in pSCR mode? | |
3438 rcall check_OC_gas_avail ; YES - check if a breathable OC (bailout) gas is available | |
634 | 3439 ENDIF |
604 | 3440 |
3441 btfsc decostop_active ; in deco mode? | |
634 | 3442 rcall check_saturation ; YES - check tissue saturation |
604 | 3443 |
3444 rcall check_mbubbles ; check for micro bubbles | |
634 | 3445 rcall check_cns_violation_now ; check current CNS value |
3446 rcall check_cns_violation_eod ; check end-of-dive CNS value (needs to be done after check_cns_violation_now) | |
3447 rcall check_gas_needs ; check for gas needs | |
3448 rcall check_gas_change ; check for diluent or gas change advice | |
3449 | |
3450 IFDEF _ccr_pscr | |
3451 btfsc FLAG_ccr_mode ; in CCR mode? | |
3452 rcall check_gas_density ; YES - check gas density | |
3453 btfsc FLAG_pscr_mode ; in pSCR mode? | |
3454 rcall check_gas_density ; YES - check gas density | |
3455 ENDIF | |
604 | 3456 |
623 | 3457 btfsc use_aGF ; using alternative GF factors? |
634 | 3458 rcall remind_agf_in_use ; YES - show reminder |
582 | 3459 |
623 | 3460 divemode_check_warnings2: |
634 | 3461 |
604 | 3462 IFDEF _rx_functions |
623 | 3463 btfss tr_functions_activated ; TR functions activated? |
3464 bra divemode_check_warnings3 ; NO - skip | |
3465 call check_tr_functions ; YES - check transmitter functions | |
3466 call check_tr_messages ; - check SAC attention and switch advice | |
604 | 3467 ENDIF |
3468 | |
623 | 3469 divemode_check_warnings3: |
634 | 3470 |
3471 ; compute if an advice / attention / warning sign shall be shown | |
3472 rcall divemode_check_sign | |
3473 | |
3474 ; increment message page number | |
623 | 3475 incf message_page,F ; increment page number |
3476 bcf STATUS,C ; clear carry bit | |
3477 movf message_page,W ; get page number into WREG | |
3478 btfss alt_layout_active ; in alternative layout? | |
3479 rlcf WREG,W ; NO - each page can take two messages | |
3480 cpfsgt message_counter ; number of actual messages > message capacity ? | |
3481 clrf message_page ; NO - all messages could be shown, restart from first page next time | |
604 | 3482 |
634 | 3483 ; clear both rows of messages if there is nothing to show at all |
623 | 3484 tstfsz message_counter ; any message to show? |
3485 bra divemode_check_warnings4 ; YES - look if second row needs to be cleared | |
3486 bsf FLAG_TFT_message_clear_both ; NO - request clearing of left-over messages | |
3487 return ; - done | |
3488 | |
3489 divemode_check_warnings4: | |
634 | 3490 ; clear 2nd row of messages if there is nothing to show (on this page) |
623 | 3491 btfss message_2nd_row_used ; does the 2nd row contain a message? |
3492 bsf FLAG_TFT_message_clear_2nd ; NO - set flag to clear the 2nd row | |
3493 return ; done | |
3494 | |
634 | 3495 |
623 | 3496 ;----------------------------------------------------------------------------- |
634 | 3497 ; Helper Function - check if an Advice / Attention / Warning Sign shall be shown |
3498 ; | |
3499 divemode_check_sign: | |
3500 ; clear sign flags | |
3501 bcf sign_advice ; clear flag for showing advice sign | |
3502 bcf sign_attention ; clear flag for showing attention sign | |
3503 bcf sign_warning ; clear flag for showing warning sign | |
3504 | |
3505 ; check for new advices | |
3506 movf DM_flags_advc_det,W ; get current advices | |
3507 andwf DM_flags_advc_ack,W ; keep only those acknowledgments that have current advices | |
3508 movwf DM_flags_advc_ack ; store updated acknowledgments | |
3509 xorwf DM_flags_advc_det,W ; find advices that have not been acknowledged yet | |
3510 tstfsz WREG ; any new advice? | |
3511 bsf sign_advice ; YES - set flag for showing advice sign | |
3512 | |
3513 ; check for new attentions (1) | |
3514 movf DM_flags_att1_det,W ; get current attentions | |
3515 andwf DM_flags_att1_ack,W ; keep only those acknowledgments that have current attentions | |
3516 movwf DM_flags_att1_ack ; store updated acknowledgments | |
3517 xorwf DM_flags_att1_det,W ; find attentions that have not been acknowledged yet | |
3518 tstfsz WREG ; any new attention? | |
3519 bsf sign_attention ; YES - set flag for showing attention sign | |
3520 | |
3521 ; check for new attentions (2) | |
3522 movf DM_flags_att2_det,W ; get current attentions | |
3523 andwf DM_flags_att2_ack,W ; keep only those acknowledgments that have current attentions | |
3524 movwf DM_flags_att2_ack ; store updated acknowledgments | |
3525 xorwf DM_flags_att2_det,W ; find attentions that have not been acknowledged yet | |
3526 tstfsz WREG ; any new attention? | |
3527 bsf sign_attention ; YES - set flag for showing attention sign | |
3528 | |
3529 ; check for new attentions (3) | |
3530 movf DM_flags_att3_det,W ; get current attentions | |
3531 andwf DM_flags_att3_ack,W ; keep only those acknowledgments that have current attentions | |
3532 movwf DM_flags_att3_ack ; store updated acknowledgments | |
3533 xorwf DM_flags_att3_det,W ; find attentions that have not been acknowledged yet | |
3534 tstfsz WREG ; any new attention? | |
3535 bsf sign_attention ; YES - set flag for showing attention sign | |
3536 | |
3537 ; check for new warnings (1) | |
3538 movf DM_flags_war1_det,W ; get current warnings | |
3539 andwf DM_flags_war1_ack,W ; keep only those acknowledgments that have current warnings | |
3540 movwf DM_flags_war1_ack ; store updated acknowledgments | |
3541 xorwf DM_flags_war1_det,W ; find warnings that have not been acknowledged yet | |
3542 tstfsz WREG ; any new warning? | |
3543 bsf sign_warning ; YES - set flag for showing warning sign | |
3544 | |
3545 ; check for new warnings (2) | |
3546 movf DM_flags_war2_det,W ; get current warnings | |
3547 andwf DM_flags_war2_ack,W ; keep only those acknowledgments that have current warnings | |
3548 movwf DM_flags_war2_ack ; store updated acknowledgments | |
3549 xorwf DM_flags_war2_det,W ; find warnings that have not been acknowledged yet | |
3550 tstfsz WREG ; any new warning? | |
3551 bsf sign_warning ; YES - set flag for showing warning sign | |
3552 | |
3553 ; show or clear the advice / attention / warning sign | |
3554 btfsc sign_advice ; shall show advice sign? | |
3555 bsf FLAG_TFT_sign_show ; YES - show sign | |
3556 btfsc sign_attention ; shall show attention sign? | |
3557 bsf FLAG_TFT_sign_show ; YES - show sign | |
3558 btfsc sign_warning ; shall show warning sign? | |
3559 bsf FLAG_TFT_sign_show ; YES - show sign | |
3560 btfss FLAG_TFT_sign_show ; shall show any sign? | |
3561 bsf FLAG_TFT_sign_clear ; NO - then clear the sign | |
3562 | |
3563 return ; done | |
3564 | |
3565 | |
3566 ;----------------------------------------------------------------------------- | |
3567 ; Check Battery Power | |
3568 ; | |
3569 global check_battery | |
3570 check_battery: | |
3571 bcf warn_det_batt_low ; clear warning for battery low | |
623 | 3572 movlw battery_show_level+1 ; get threshold for showing battery level, incremented by 1 |
628 | 3573 cpfslt batt_percent ; battery percentage ok? |
634 | 3574 return ; YES - done |
3575 btfsc battery_low_condition ; NO - battery low condition detected? | |
3576 bsf warn_det_batt_low ; YES - set warning for battery low | |
3577 movf active_customview,W ; - get current custom view | |
3578 xorlw index_clock_batt_surfpress ; - battery shown in custom view? | |
3579 bnz check_battery_mesg ; NO - show message | |
3580 return ; YES - do not show twice, done | |
3581 | |
3582 check_battery_mesg: | |
3583 incf message_counter,F ; increase message counter | |
3584 goto TFT_message_battery_percent ; show message for battery low (battery percent) and return | |
3585 | |
3586 | |
3587 ;----------------------------------------------------------------------------- | |
3588 ; Show Dive Timeout Counter if Dive Time is not counted | |
3589 ; | |
55 | 3590 check_divetimeout: |
623 | 3591 btfsc count_divetime ; is dive time counted? |
634 | 3592 return ; YES - nothing to do, done |
3593 incf message_counter,F ; NO - increase message counter | |
3594 goto TFT_message_divetimeout ; - show timeout counter and return | |
3595 | |
3596 | |
3597 ;----------------------------------------------------------------------------- | |
3598 ; Check ppO2 of all Gases / Diluents in use | |
3599 ; | |
560 | 3600 check_ppO2: |
623 | 3601 IFDEF _ccr_pscr |
634 | 3602 ; check if breathing from the loop |
3603 btfsc FLAG_oc_mode ; in OC mode? | |
604 | 3604 bra check_ppO2_1 ; YES - continue with breathed gas |
623 | 3605 btfsc bailout_mode ; NO - in bailout? |
604 | 3606 bra check_ppO2_1 ; YES - continue with breathed gas |
634 | 3607 ; CCR / pSCR mode - check the pure diluent |
3608 bcf warn_det_ppO2_diluent ; clear warning for pure diluent ppO2 | |
3609 bcf attn_det_ppo2_diluent ; clear attention for pure diluent ppO2 | |
623 | 3610 MOVII int_O_pure_ppO2,mpr ; get value and attention/warning flags for the pure diluent |
634 | 3611 btfsc hi,int_warning_flag ; ppO2 of the pure diluent in warning state? |
3612 bra check_ppO2_dil_warn ; YES - show warning | |
604 | 3613 btfsc hi,int_attention_flag ; ppO2 of the pure diluent in attention state? |
634 | 3614 bra check_ppO2_dil_attn ; YES - show attention |
3615 bra check_ppO2_1 ; continue with checking breathed gas | |
3616 | |
3617 check_ppO2_dil_warn: | |
3618 bsf warn_det_ppO2_diluent ; set warning for pure diluent ppO2 | |
3619 rcall check_ppO2_show_mesg ; show ppO2 message | |
3620 bra check_ppO2_1 ; continue with checking breathed gas | |
3621 | |
3622 check_ppO2_dil_attn: | |
3623 bsf attn_det_ppo2_diluent ; set attention for pure diluent ppO2 | |
3624 rcall check_ppO2_show_mesg ; show ppO2 message | |
3625 ;bra check_ppO2_1 ; continue with checking breathed gas | |
3626 ENDIF ; _ccr_pscr | |
3627 | |
604 | 3628 check_ppO2_1: |
634 | 3629 ; all modes - check breathed gas (OC or loop) |
3630 bcf attn_det_ppo2_breathed ; clear attention for breathed ppO2 | |
3631 bcf warn_det_ppO2_breathed ; clear warning for breathed ppO2 | |
623 | 3632 MOVII int_O_breathed_ppO2,mpr ; get value and attention/warning flags for the breathed gas |
604 | 3633 btfsc hi,int_attention_flag ; breathed ppO2 in attention state (when in loop mode, no attention will be generated)? |
634 | 3634 bra check_ppO2_breath_attn ; YES - set attention flag and show ppO2 |
3635 btfsc hi,int_low_flag ; NO - breathed ppO2 too low? | |
3636 bra check_ppO2_breath_warn_low ; YES - record the warning and show ppO2 | |
3637 btfsc hi,int_high_flag ; NO - breathed ppO2 too high? | |
3638 bra check_ppO2_breath_warn_high ; YES - record the warning and show ppO2 | |
3639 bra check_ppO2_breath_ok ; NO - ppO2 is ok | |
3640 | |
3641 check_ppO2_breath_attn: | |
3642 bsf attn_det_ppo2_breathed ; set attention for breathed ppO2 | |
3643 bra check_ppO2_show ; show ppO2 message | |
3644 | |
3645 check_ppO2_breath_warn_low: | |
582 | 3646 movlw d'4' ; set type of alarm (ppO2 low) |
634 | 3647 bra check_ppO2_breath_common ; continue with common part |
3648 | |
3649 check_ppO2_breath_warn_high: | |
560 | 3650 movlw d'5' ; set type of alarm (ppO2 high) |
634 | 3651 ;bra check_ppO2_breath_common ; continue with common part |
3652 | |
3653 check_ppO2_breath_common: | |
623 | 3654 movwf alarm_type ; copy alarm type to alarm register |
634 | 3655 bsf event_occured ; set event flag |
3656 bsf warn_det_ppO2_breathed ; set warning for breathed ppO2 | |
3657 bra check_ppO2_show ; show ppO2 message | |
3658 | |
3659 check_ppO2_breath_ok: | |
3660 TSTOSS opt_showppo2 ; shall always show ppO2 (0 = no, 1 = yes) | |
3661 return ; NO - done | |
3662 ;bra check_ppO2_show ; YES - show ppO2 message | |
3663 | |
3664 check_ppO2_show: | |
631 | 3665 IFDEF _ccr_pscr |
634 | 3666 btfsc FLAG_oc_mode ; in OC mode? |
3667 bra check_ppO2_show_1 ; YES - show ppO2 message | |
3668 btfsc bailout_mode ; in bailout mode? | |
3669 bra check_ppO2_show_1 ; YES - show ppO2 message | |
604 | 3670 return ; NO - in loop mode, ppO2 is already shown via setpoint display |
634 | 3671 ENDIF |
3672 check_ppO2_show_1: | |
3673 movf active_customview,W ; get current custom view | |
3674 xorlw index_ppo2_ead_end_cns ; ppO2 shown already via custom view? | |
3675 bz check_ppO2_done ; YES - done | |
3676 movf active_customview,W ; get current custom view (again) | |
3677 xorlw index_pscr_info ; ppO2 shown already via custom view? | |
3678 bz check_ppO2_done ; YES - done | |
3679 ;bra check_ppO2_show_mesg ; NO - show ppO2 message | |
3680 | |
3681 check_ppO2_show_mesg: | |
3682 incf message_counter,F ; increase message counter | |
3683 goto TFT_message_ppo2 ; show ppO2 message and return | |
3684 | |
3685 check_ppO2_done: | |
3686 return ; done | |
3687 | |
3688 | |
3689 ;----------------------------------------------------------------------------- | |
3690 ; Show fTTS Message | |
3691 ; | |
604 | 3692 check_display_ftts: |
631 | 3693 IFDEF _ccr_pscr |
3694 btfsc bailout_mode ; in bailout mode? | |
3695 return ; YES - in bailout no fTTS is computed, done | |
3696 ENDIF | |
623 | 3697 btfss count_divetime ; is dive time counted? |
631 | 3698 return ; NO - omit, done |
623 | 3699 movff char_I_extra_time,lo ; YES - get extra time |
3700 tstfsz lo ; - extra time > 0 ? | |
634 | 3701 bra check_display_ftts_mesg ; YES - show fTTS |
631 | 3702 return ; NO - no fTTS computed, done |
634 | 3703 |
3704 check_display_ftts_mesg: | |
631 | 3705 incf message_counter,F ; increase counter |
634 | 3706 goto TFT_message_ftts ; show @+x time |
3707 | |
3708 | |
3709 ;----------------------------------------------------------------------------- | |
3710 ; check current CNS Value | |
3711 ; | |
3712 global check_cns_violation_now | |
3713 check_cns_violation_now: | |
3714 bcf warn_det_cns_current ; clear warning for CNS | |
3715 bcf attn_det_cns_current ; clear attention for CNS | |
623 | 3716 movff int_O_CNS_current+1,WREG ; get current CNS, high byte |
582 | 3717 btfsc WREG,int_warning_flag ; warning flag set? |
634 | 3718 bra check_cns_violation_now_warn; YES - show a warning |
3719 btfsc WREG,int_attention_flag ; attention flag set? | |
3720 bra check_cns_violation_now_attn; YES - show an attention | |
3721 return ; NO - done | |
3722 | |
3723 check_cns_violation_now_warn: | |
3724 bsf warn_det_cns_current ; set warning for CNS | |
3725 bra check_cns_violation_now_mesg; show message | |
3726 | |
3727 check_cns_violation_now_attn: | |
3728 bsf attn_det_cns_current ; set attention for CNS | |
3729 ;bra check_cns_violation_now_mesg; show message | |
3730 | |
3731 check_cns_violation_now_mesg: | |
628 | 3732 IFNDEF _helium |
634 | 3733 movf active_customview,W ; get current custom view |
3734 xorlw index_ppo2_ead_end_cns ; CNS shown? | |
3735 bz check_cns_violation_now_done; YES - done | |
628 | 3736 ENDIF |
634 | 3737 movf active_customview,W ; get current custom view (again) |
3738 xorlw index_CNS ; CNS shown? | |
3739 bz check_cns_violation_now_done; YES - done | |
3740 incf message_counter,F ; NO - increase counter | |
3741 goto TFT_message_cns ; - show message and return | |
3742 | |
3743 check_cns_violation_now_done: | |
3744 return ; done | |
3745 | |
3746 | |
3747 ;----------------------------------------------------------------------------- | |
3748 ; check end-of-Dive CNS Value | |
3749 ; | |
3750 global check_cns_violation_eod | |
3751 check_cns_violation_eod: | |
3752 bcf attn_det_cns_eod ; clear attention for end-of-dive CNS | |
3753 btfsc warn_det_cns_current ; current CNS value in warning state? | |
3754 return ; YES - inhibit end-of-dive CNS checks if current CNS is already in warning | |
3755 ;bra check_cns_violation_eod_norm; NO - check normal plan | |
3756 | |
3757 check_cns_violation_eod_norm: | |
623 | 3758 movff int_O_CNS_norm+1,WREG ; get CNS at end of dive in normal plan, high byte |
560 | 3759 btfsc WREG,int_invalid_flag ; flag for invalid value set? |
634 | 3760 bra check_cns_violation_eod_alt ; YES - continue with checking alternative plan |
582 | 3761 btfsc WREG,int_warning_flag ; NO - flag for warning set? |
634 | 3762 bra check_cns_violation_eod_warn; YES - show message |
3763 ;bra check_cns_violation_eod_alt ; NO - check alternative plan | |
3764 | |
3765 check_cns_violation_eod_alt: | |
623 | 3766 movff int_O_CNS_alt+1,WREG ; get CNS at end of dive in alternative plan, high byte |
560 | 3767 btfsc WREG,int_invalid_flag ; flag for invalid value set? |
634 | 3768 return ; YES - done |
560 | 3769 btfsc WREG,int_warning_flag ; NO - flag for warning set? |
634 | 3770 bra check_cns_violation_eod_warn; YES - show message |
3771 return ; NO - done | |
3772 | |
3773 check_cns_violation_eod_warn: | |
3774 bsf attn_det_cns_eod ; set attention(!) for end-of-dive CNS | |
3775 movf active_customview,W ; get current custom view | |
3776 xorlw index_CNS ; CNS shown? | |
3777 bz check_cns_violation_eod_done; YES - done | |
3778 incf message_counter,F ; NO - increase message counter | |
3779 goto TFT_message_cns_eod ; - show message for end-of-dive CNS and return | |
3780 | |
3781 check_cns_violation_eod_done: | |
3782 return ; done | |
3783 | |
3784 | |
3785 ;----------------------------------------------------------------------------- | |
3786 ; Check current Tissue Supersaturation | |
3787 ; | |
3788 global check_saturation | |
3789 check_saturation: | |
3790 bcf attn_det_saturation ; clear attention for saturation | |
3791 bcf warn_det_saturation ; clear warning for saturation | |
3792 bcf attn_det_ibcd ; clear attention for IBCD | |
3793 movff int_O_lead_supersat+1,WREG ; get upper byte of leading tissue's supersaturation | |
3794 btfss WREG,int_warning_flag ; warning flag set? | |
3795 bra check_saturation_1 ; NO - continue with checking for attention flag | |
3796 movlw d'2' ; YES - set type of alarm | |
3797 movwf alarm_type ; - copy to alarm register | |
3798 bsf event_occured ; - set event flag | |
3799 bsf warn_det_saturation ; - set warning | |
3800 bra check_saturation_mesg ; - show saturation message | |
3801 | |
3802 check_saturation_1: | |
3803 btfss WREG,int_attention_flag ; attention flag set? | |
3804 bra check_saturation_2 ; NO - continue with checking for IBCD | |
3805 bsf attn_det_saturation ; YES - set attention | |
3806 bra check_saturation_mesg ; - show saturation message | |
3807 | |
3808 check_saturation_2: | |
3809 IFDEF _helium | |
3810 TSTOSS opt_enable_IBCD ; IBCD warning activated? | |
3811 bra check_saturation_3 ; NO - continue with checking deco info | |
3812 movff char_O_deco_warnings,WREG ; YES - get the deco warnings vector | |
3813 btfss WREG,IBCD_warning ; - IBCD warning flag set? | |
3814 bra check_saturation_3 ; NO - continue with checking deco info | |
3815 bsf attn_det_ibcd ; YES - set attention | |
3816 bra check_saturation_mesg ; - show saturation message | |
3817 ENDIF | |
3818 | |
3819 check_saturation_3: | |
3820 btfss divemode ; in dive mode? | |
3821 return ; NO - done | |
631 | 3822 IFDEF _ccr_pscr |
634 | 3823 btfsc bailout_mode ; YES - in bailout mode? |
3824 return ; YES - done (deco zone flag is not updated when in bailout mode) | |
631 | 3825 ENDIF |
634 | 3826 movff char_O_deco_info,WREG ; NO - get the deco info vector |
3827 btfss WREG,deco_zone ; deco zone flag set? | |
3828 return ; NO - done | |
3829 btfsc use_aGF ; YES - using alternative GF factors? | |
3830 return ; YES - suppress deco zone info | |
3831 btfsc alt_layout_active ; NO - in alternative layout? | |
3832 return ; YES - suppress deco zone info | |
3833 incf message_counter,F ; NO - increase message counter | |
3834 goto TFT_message_deco_info ; - show deco info and return | |
3835 | |
3836 check_saturation_mesg: | |
3837 IFDEF _helium | |
3838 btfss attn_det_ibcd ; IBCD detected? | |
3839 bra check_saturation_mesg_1 ; NO - show saturation message | |
3840 incf message_counter,F ; YES - increase message counter | |
3841 call TFT_message_IBCD ; - show IBCD message | |
3842 ENDIF | |
3843 check_saturation_mesg_1: | |
3844 incf message_counter,F ; increase message counter | |
3845 goto TFT_message_saturation ; show saturation message and return | |
3846 | |
3847 | |
3848 ;----------------------------------------------------------------------------- | |
3849 ; Check Depth Limit | |
3850 ; | |
623 | 3851 check_depth_limit: |
634 | 3852 bcf warn_det_depth_limit ; clear warning by default |
623 | 3853 movff opt_max_depth,WREG ; get depth limit |
3854 cpfsgt depth_meter ; current depth > depth limit? | |
634 | 3855 return ; NO - done |
3856 bsf warn_det_depth_limit ; YES - set warning | |
3857 incf message_counter,F ; - increase message counter | |
3858 goto TFT_message_depth_limit ; - show message | |
3859 | |
3860 | |
3861 ;----------------------------------------------------------------------------- | |
3862 ; Check Bühlmann Model Violation | |
3863 ; | |
604 | 3864 check_outside: |
634 | 3865 bcf warn_det_outside ; clear warning |
3866 bcf attn_det_outside ; clear attention | |
604 | 3867 movff char_O_deco_warnings,WREG ; bank-safe copy of deco warnings |
634 | 3868 btfss WREG,outside_warning ; currently outside the ZH-L16 model? |
3869 bra check_outside_1 ; NO | |
3870 bsf warn_det_outside ; YES - set warning | |
3871 bra check_outside_mesg ; - show message | |
3872 | |
3873 check_outside_1: | |
3874 btfss WREG,outside_warning_lock ; had been outside of the ZH-L16 model? | |
604 | 3875 return ; NO - done |
634 | 3876 bsf attn_det_outside ; YES - set attention |
3877 ;bra check_outside_mesg ; - show message | |
3878 | |
3879 check_outside_mesg: | |
3880 incf message_counter,F ; increase message counter | |
3881 goto TFT_message_outside ; show message and return | |
3882 | |
3883 | |
3884 ;----------------------------------------------------------------------------- | |
3885 ; Check raised Probability for Micro-Bubbles | |
3886 ; | |
604 | 3887 global check_mbubbles |
3888 check_mbubbles: | |
634 | 3889 bcf warn_det_microbubble ; clear warning |
3890 bcf attn_det_microbubble ; clear attention | |
604 | 3891 movff char_O_deco_warnings,WREG ; bank-safe copy for deco warnings |
634 | 3892 btfss WREG,mbubble_warning ; currently in micro bubbling zone? |
3893 bra check_mbubbles_1 ; NO | |
3894 bsf warn_det_microbubble ; YES - set warning | |
3895 bra check_mbubbles_mesg ; - show message | |
3896 | |
3897 check_mbubbles_1 | |
3898 btfss WREG,mbubble_warning_lock ; had been in micro bubbling zone? | |
604 | 3899 return ; NO - done |
634 | 3900 bsf attn_det_microbubble ; YES - set attention |
3901 ;bra check_mbubbles_mesg ; - show message | |
3902 | |
3903 check_mbubbles_mesg: | |
3904 incf message_counter,F ; increase message counter | |
3905 goto TFT_message_mbubbles ; show message and return | |
3906 | |
3907 | |
3908 IFDEF _ccr_pscr | |
3909 ;----------------------------------------------------------------------------- | |
3910 ; Check Gas Density | |
3911 ; | |
3912 check_gas_density: | |
3913 TSTOSS opt_gas_density_check ; shall check gas density? | |
3914 return ; NO - done | |
3915 bcf warn_det_gas_density ; YES - clear attention for gas density by default | |
3916 bcf attn_det_gas_density ; - clear warning for gas density by default | |
3917 movff int_O_gas_density+1,WREG ; - get upper byte of current gas density | |
3918 btfsc WREG,int_warning_flag ; - warning flag set? | |
3919 bra check_gas_density_warn ; YES - generate a warning | |
3920 btfsc WREG,int_attention_flag ; NO - attention flag set? | |
3921 bra check_gas_density_attn ; YES - generate an attention | |
3922 ;bra check_gas_density_ok ; NO - gas density ok | |
3923 | |
3924 check_gas_density_ok: | |
3925 bcf shown_gas_density_attn ; re-arm custom view show-up for warning | |
3926 bcf shown_gas_density_warn ; re-arm custom view show-up for attention | |
3927 return ; done | |
3928 | |
3929 check_gas_density_warn: | |
3930 bsf warn_det_gas_density ; set warning | |
3931 bcf shown_gas_density_attn ; re-arm custom view show-up for attention | |
3932 btfsc shown_gas_density_warn ; has the custom view been shown before on warning level? | |
3933 bra check_gas_density_mesg ; YES - do not show the gas needs custom view again | |
3934 btfsc custom_view_locked ; NO - custom view locked? | |
3935 bra check_gas_density_mesg ; YES - do not show it now | |
3936 bsf shown_gas_density_warn ; NO - set custom view as shown now | |
3937 bra check_gas_density_cv ; - show gas needs custom view | |
3938 | |
3939 check_gas_density_attn: | |
3940 bsf attn_det_gas_density ; set attention | |
3941 bcf shown_gas_density_warn ; re-arm custom view show-up for warning | |
3942 btfsc shown_gas_density_attn ; has the custom view been shown before on attention level? | |
3943 bra check_gas_density_mesg ; YES - do not show the gas needs custom view again | |
3944 btfsc custom_view_locked ; NO - custom view locked? | |
3945 bra check_gas_density_mesg ; YES - do not show it now | |
3946 bsf shown_gas_density_attn ; NO - set custom view as shown now | |
3947 ;bra check_gas_density_cv ; - show gas needs custom view | |
3948 | |
3949 check_gas_density_cv: | |
3950 movlw index_ppo2_ead_end_cns ; get custom view number of gas density | |
3951 call dive_customview_show ; show custom view | |
3952 ;bra check_gas_density_mesg ; show message | |
3953 | |
3954 check_gas_density_mesg: | |
3955 incf message_counter,F ; increase message counter | |
3956 goto TFT_message_gas_density ; show gas density message and return | |
3957 | |
3958 | |
3959 ;----------------------------------------------------------------------------- | |
3960 ; Check if an OC Bailout Gas is available | |
3961 ; | |
3962 check_OC_gas_avail: | |
3963 bcf warn_det_no_bo_gas ; clear warning by default | |
3964 tstfsz best_gas_number ; is a breathable OC (bailout) gas available? | |
3965 return ; YES - a breathable gas is available, done | |
3966 btfsc bailout_mode ; NO - in bailout? | |
3967 return ; YES - suppress warning, done | |
3968 bsf warn_det_no_bo_gas ; NO - set warning for no bailout gas | |
3969 incf message_counter,F ; - increase message counter | |
3970 goto TFT_message_no_BO_gas ; - show message and return | |
3971 | |
3972 ENDIF ; _ccr_pscr | |
631 | 3973 |
604 | 3974 |
3975 IFDEF _cave_mode | |
631 | 3976 |
634 | 3977 ;----------------------------------------------------------------------------- |
3978 ; Check Cave Profile Storage Usage | |
3979 ; | |
604 | 3980 check_cavemode: |
634 | 3981 bcf warn_det_cave_shut_down ; clear warning by default |
3982 bcf attn_det_cave_shut_down ; clear attention by default | |
631 | 3983 btfsc backtrack_entire_full ; is the backtracking storage entirely used up? |
3984 bra check_cavemode_full ; YES - turn dive, switch off cave mode and show warning message | |
3985 btfsc backtrack_almost_full ; NO - backtracking storage almost full? | |
3986 bra check_cavemode_almost_full ; YES - show attention message that cave mode will stop soon | |
634 | 3987 btfss cave_mode ; NO - cave mode switched on? |
3988 return ; NO - do not show info | |
3989 btfsc alt_layout_active ; YES - alternative layout active? | |
3990 return ; YES - suppress info message | |
3991 ;bra check_cavemode_mesg ; NO - show cave mode active info | |
3992 | |
3993 check_cavemode_mesg: | |
3994 incf message_counter,F ; increase message counter | |
3995 goto TFT_message_cave_mode ; show cave mode message | |
631 | 3996 |
3997 check_cavemode_full: | |
3998 btfss backtrack_shutdown ; backtracking shut down already? | |
3999 bsf request_cave_off_turned ; NO - request to switch cave mode off and to set the dive as turned | |
4000 bsf backtrack_shutdown ; remember shut down as been executed (anyhow) | |
634 | 4001 btfss cave_mode ; has the cave mode been switched on again meanwhile? |
4002 bsf warn_det_cave_shut_down ; NO - set warning level | |
631 | 4003 btfsc cave_mode ; has the cave mode been switched on again meanwhile? |
634 | 4004 bsf attn_det_cave_shut_down ; YES - set attention level |
4005 bra check_cavemode_mesg ; show message | |
631 | 4006 |
4007 check_cavemode_almost_full: | |
4008 btfss cave_mode ; cave mode switched on? | |
4009 return ; NO - suppress message | |
634 | 4010 bsf attn_det_cave_shut_down ; YES - set an attention |
4011 bra check_cavemode_mesg ; - show message | |
631 | 4012 |
4013 ENDIF ; _cave_mode | |
4014 | |
604 | 4015 |
634 | 4016 ;----------------------------------------------------------------------------- |
4017 ; Show aGF Reminder | |
4018 ; | |
4019 remind_agf_in_use: | |
4020 incf message_counter,F ; increase message counter | |
4021 goto TFT_message_agf ; show aGF reminder and return | |
4022 | |
4023 | |
4024 ;----------------------------------------------------------------------------- | |
4025 ; Check better Gas / Diluent Advice | |
4026 ; | |
4027 check_gas_change: | |
4028 bcf advc_det_change_gas ; clear advice by default | |
4029 IFDEF _ccr_pscr | |
4030 btfsc better_dil_available ; is a better diluent available? | |
4031 bra check_gas_change_mesg ; YES - show a gas change advice | |
4032 ENDIF | |
4033 btfsc better_gas_available ; is a better gas available? | |
4034 bra check_gas_change_mesg ; YES - show a gas change advice | |
4035 return ; NO - done | |
4036 | |
4037 check_gas_change_mesg: | |
4038 bsf advc_det_change_gas ; set advice | |
4039 incf message_counter,F ; increase message counter | |
4040 goto TFT_message_gas_change ; show advice and return | |
4041 | |
604 | 4042 |
4043 IFDEF _rx_functions | |
4044 | |
634 | 4045 ;----------------------------------------------------------------------------- |
4046 ; Check SAC and Swap-Tank Advice | |
4047 ; | |
604 | 4048 check_tr_messages: |
634 | 4049 bcf attn_det_sac_rate ; clear SAC attention by default |
4050 bcf advc_det_switch_tank ; clear switch advice by default | |
623 | 4051 btfss count_divetime ; is the dive time counted, i.e. deeper than dive threshold? |
634 | 4052 return ; NO - suppress check |
623 | 4053 movff int_O_SAC_measured+1,WREG ; YES - bank-safe copy of measured SAC rate |
4054 btfss WREG,int_attention_flag ; - attention flag set? | |
634 | 4055 bra check_tr_messages_chk_swap ; NO - continue with checking for swap advice |
623 | 4056 btfsc WREG,int_not_avail_flag ; SAC rate available? |
634 | 4057 bra check_tr_messages_chk_swap ; NO - continue with checking for swap advice |
4058 bsf attn_det_sac_rate ; YES - set attention for SAC rate | |
4059 movf active_customview,W ; - get current custom view | |
4060 xorlw index_pressures_SAC ; - SAC rate shown? | |
4061 bz check_tr_messages_chk_swap ; YES - do not show twice, continue with swap advice | |
4062 ;bra check_tr_messages_mesg_sac ; NO - show SAC message | |
4063 | |
4064 check_tr_messages_mesg_sac: | |
4065 incf message_counter,F ; increase message counter | |
4066 call TFT_message_sac ; show message for SAC rate | |
4067 ;bra check_tr_messages_chk_swap ; continue with switch advice | |
4068 | |
4069 check_tr_messages_chk_swap: | |
604 | 4070 movff char_O_deco_info,WREG ; bank-safe copy of deco info vector |
4071 btfss WREG,ind_double_switch ; swap tank flag set? | |
634 | 4072 return ; NO - done |
4073 ;bra check_tr_messages_mesg_swap ; YES - show swap message | |
4074 | |
4075 check_tr_messages_mesg_swap: | |
4076 bsf advc_det_switch_tank ; set advice | |
4077 incf message_counter,F ; increase message counter | |
4078 goto TFT_message_switch_tanks ; show message for switching tanks and return | |
4079 | |
4080 | |
4081 ;----------------------------------------------------------------------------- | |
4082 ; Check Transmitter States | |
4083 ; | |
604 | 4084 check_tr_functions: |
634 | 4085 ; check transmitter 1 |
604 | 4086 movff char_I_pressure_stat+0,WREG ; get status of 1st pressure reading |
4087 rcall check_tr_functions_helper1 ; check for transmitter 1 lost | |
4088 rcall check_tr_functions_helper2 ; check for transmitter 1 low battery | |
4089 movff int_IO_pressure_value+1,WREG ; get high byte of 1st pressure reading | |
4090 rcall check_tr_functions_helper3 ; check for transmitter 1 pressure warning | |
4091 rcall check_tr_functions_helper4 ; check for transmitter 1 pressure attention | |
634 | 4092 ; check transmitter 2 |
604 | 4093 movff char_I_pressure_stat+1,WREG ; get status of 2nd pressure reading |
4094 rcall check_tr_functions_helper5 ; check for transmitter 2 lost | |
4095 rcall check_tr_functions_helper6 ; check for transmitter 2 low battery | |
4096 movff int_IO_pressure_value+3,WREG ; get high byte of 2nd pressure reading | |
4097 rcall check_tr_functions_helper7 ; check for transmitter 2 pressure warning | |
4098 rcall check_tr_functions_helper8 ; check for transmitter 2 pressure attention | |
634 | 4099 |
4100 ; results for transmitter | |
4101 btfsc attn_det_xmit1_bat ; do we have a transmitter 1 attention? | |
4102 bra check_tr_functions_xmitter_mesg ; YES - show transmitter message | |
4103 btfsc attn_det_xmit2_bat ; do we have a transmitter 2 attention? | |
4104 bra check_tr_functions_xmitter_mesg ; YES - show transmitter message | |
4105 check_tr_functions_1: | |
4106 btfsc warn_det_pressure1 ; do we have a pressure 1 warning? | |
4107 bra check_tr_functions_pres_mesg ; YES - show pressure message | |
4108 btfsc warn_det_pressure2 ; do we have a pressure 2 warning? | |
4109 bra check_tr_functions_pres_mesg ; YES - show pressure message | |
4110 btfsc attn_det_pressure1 ; do we have a pressure 1 attention? | |
4111 bra check_tr_functions_pres_mesg ; YES - show pressure message | |
4112 btfsc attn_det_pressure2 ; do we have a pressure 2 attention? | |
4113 bra check_tr_functions_pres_mesg ; YES - show pressure message | |
4114 return ; done | |
4115 | |
4116 check_tr_functions_xmitter_mesg: | |
4117 incf message_counter,F ; increase message counter | |
4118 call TFT_message_transmitter ; show transmitter message | |
4119 bra check_tr_functions_1 ; continue with pressure messages | |
4120 | |
4121 check_tr_functions_pres_mesg: | |
4122 incf message_counter,F ; increase message counter | |
4123 goto TFT_message_pressure ; show pressure message and return | |
604 | 4124 |
4125 check_tr_functions_helper1: | |
4126 btfsc WREG,char_transmitter_lost ; transmitter 1 lost? | |
4127 bra check_tr_functions_helper1a ; YES - show transmitter attention message | |
634 | 4128 bcf shown_xmit1_lost ; NO - clear flag for old message |
604 | 4129 return ; - done |
4130 check_tr_functions_helper1a: | |
634 | 4131 btfsc shown_xmit1_lost ; is it a new message? |
604 | 4132 return ; NO - do not show the pressure readings custom view again |
634 | 4133 bsf shown_xmit1_lost ; YES - memorize it's an old message now |
4134 rcall check_tr_functions_show_cv ; - show custom view | |
604 | 4135 |
4136 check_tr_functions_helper2: | |
4137 btfsc WREG,char_transmitter_low_bat ; transmitter 1 low battery? | |
4138 bra check_tr_functions_helper2a ; YES - show transmitter attention message | |
634 | 4139 bcf shown_xmit1_battery ; NO - clear flag for old message |
4140 bcf attn_det_xmit1_bat ; - clear transmitter 1 attention | |
604 | 4141 return ; - done |
4142 check_tr_functions_helper2a: | |
634 | 4143 bsf attn_det_xmit1_bat ; set transmitter 1 attention |
4144 btfsc shown_xmit1_battery ; is it a new message? | |
604 | 4145 return ; NO - do not show the pressure readings custom view again |
634 | 4146 bsf shown_xmit1_battery ; YES - memorize it's an old message now |
4147 rcall check_tr_functions_show_cv ; - show custom view | |
604 | 4148 |
4149 check_tr_functions_helper3: | |
4150 btfsc WREG,int_warning_flag ; transmitter 1 pressure warning? | |
4151 bra check_tr_functions_helper3a ; YES - show pressure reading message as warning | |
634 | 4152 bcf shown_xmit1_pres_warn ; NO - clear flag for old message |
4153 bcf warn_det_pressure1 ; - clear pressure 1 warning | |
604 | 4154 return ; - done |
4155 check_tr_functions_helper3a: | |
634 | 4156 bsf warn_det_pressure1 ; set pressure 1 warning |
4157 btfsc shown_xmit1_pres_warn ; is it a new message? | |
604 | 4158 return ; NO - do not show the pressure readings custom view again |
634 | 4159 bsf shown_xmit1_pres_warn ; YES - memorize it's an old message now |
604 | 4160 bra check_tr_functions_show_cv ; - show custom view |
4161 | |
4162 check_tr_functions_helper4: | |
4163 btfsc WREG,int_attention_flag ; transmitter 1 pressure attention? | |
4164 bra check_tr_functions_helper4a ; YES - show pressure reading message as attention | |
634 | 4165 bcf shown_xmit1_pres_attn ; NO - clear flag for old message |
4166 bcf attn_det_pressure1 ; - clear pressure 1 attention | |
604 | 4167 return ; - done |
4168 check_tr_functions_helper4a | |
634 | 4169 bsf attn_det_pressure1 ; set pressure 1 attention |
4170 btfsc shown_xmit1_pres_attn ; is it a new message? | |
604 | 4171 return ; NO - do not show the pressure readings custom view again |
634 | 4172 bsf shown_xmit1_pres_attn ; YES - memorize it's an old message now |
604 | 4173 bra check_tr_functions_show_cv ; - show custom view |
4174 | |
4175 check_tr_functions_helper5: | |
4176 btfsc WREG,char_transmitter_lost ; transmitter 2 lost? | |
4177 bra check_tr_functions_helper5a ; YES - show transmitter attention message | |
634 | 4178 bcf shown_xmit2_lost ; NO - clear flag for old lost message |
604 | 4179 return ; - done |
4180 check_tr_functions_helper5a: | |
634 | 4181 btfsc shown_xmit2_lost ; is it a new message? |
604 | 4182 return ; NO - do not show the pressure readings custom view again |
634 | 4183 bsf shown_xmit2_lost ; YES - memorize it's an old message now |
604 | 4184 bra check_tr_functions_show_cv ; - show custom view |
4185 | |
4186 check_tr_functions_helper6: | |
4187 btfsc WREG,char_transmitter_low_bat ; transmitter 2 low battery? | |
4188 bra check_tr_functions_helper6a ; YES - show transmitter attention message | |
634 | 4189 bcf shown_xmit2_battery ; NO - clear flag for old battery message |
4190 bcf attn_det_xmit2_bat ; - clear transmitter 2 attention | |
604 | 4191 return ; - done |
4192 check_tr_functions_helper6a: | |
634 | 4193 bsf attn_det_xmit2_bat ; set transmitter 2 attention |
4194 btfsc shown_xmit2_battery ; is it a new message? | |
604 | 4195 return ; NO - do not show the pressure readings custom view again |
634 | 4196 bsf shown_xmit2_battery ; YES - memorize it's an old message now |
604 | 4197 bra check_tr_functions_show_cv ; - show custom view |
4198 | |
4199 check_tr_functions_helper7: | |
4200 btfsc WREG,int_warning_flag ; transmitter 2 pressure warning? | |
4201 bra check_tr_functions_helper7a ; YES - show pressure reading message as warning | |
634 | 4202 bcf shown_xmit2_pres_warn ; NO - clear flag for old message |
4203 bcf warn_det_pressure2 ; - clear pressure 2 warning | |
604 | 4204 return ; - done |
4205 check_tr_functions_helper7a: | |
634 | 4206 bsf warn_det_pressure2 ; set pressure 2 warning |
4207 btfsc shown_xmit2_pres_warn ; is it a new message? | |
604 | 4208 return ; NO - do not show the pressure readings custom view again |
634 | 4209 bsf shown_xmit2_pres_warn ; YES - memorize it's an old message now |
604 | 4210 bra check_tr_functions_show_cv ; - show custom view |
4211 | |
4212 check_tr_functions_helper8: | |
4213 btfsc WREG,int_attention_flag ; transmitter 2 pressure attention? | |
4214 bra check_tr_functions_helper8a ; YES - show pressure reading message as attention | |
634 | 4215 bcf shown_xmit2_pres_attn ; NO - clear flag for old message |
4216 bcf attn_det_pressure2 ; - clear pressure 2 attention | |
604 | 4217 return ; - done |
4218 check_tr_functions_helper8a | |
634 | 4219 bsf attn_det_pressure2 ; set pressure 2 attention |
4220 btfsc shown_xmit2_pres_attn ; is it a new message? | |
604 | 4221 return ; NO - do not show the pressure readings custom view again |
634 | 4222 bsf shown_xmit2_pres_attn ; YES - memorize it's an old message now |
604 | 4223 ;bra check_tr_functions_show_cv ; - show custom view |
4224 | |
4225 check_tr_functions_show_cv: | |
634 | 4226 btfsc custom_view_locked ; NO - custom view locked? |
4227 return ; YES - do not show now | |
4228 movlw index_pressures_SAC ; NO - get custom view number of pressure readings | |
4229 goto dive_customview_show ; - show custom view and return | |
4230 | |
4231 ENDIF ; _rx_functions | |
4232 | |
4233 | |
4234 ;----------------------------------------------------------------------------- | |
4235 ; Check Gas Needs | |
4236 ; | |
631 | 4237 check_gas_needs: |
634 | 4238 bcf attn_det_gas_needs ; clear attention by default |
4239 bcf warn_det_gas_needs ; clear warning by default | |
4240 banksel int_O_gas_need_pres ; switch to bank where int_O_gas_need_pres is stored | |
623 | 4241 movf int_O_gas_need_pres+1,W ; get high byte from pres need of 1st tank |
4242 iorwf int_O_gas_need_pres+3,W ; inclusive or with high byte from pres need of 2nd tank | |
4243 iorwf int_O_gas_need_pres+5,W ; inclusive or with high byte from pres need of 3rd tank | |
4244 iorwf int_O_gas_need_pres+7,W ; inclusive or with high byte from pres need of 4th tank | |
4245 iorwf int_O_gas_need_pres+9,W ; inclusive or with high byte from pres need of 5th tank | |
634 | 4246 banksel common ; back to bank common |
4247 btfsc WREG,int_invalid_flag ; any invalid flag set? | |
4248 bra check_gas_needs_ok ; YES - no further checking required | |
4249 btfsc WREG,int_warning_flag ; NO - any gas with pres_need >= pres_fill ? | |
631 | 4250 bra check_gas_needs_warn ; YES - generate a warning |
634 | 4251 btfsc WREG,int_attention_flag ; NO - any gas with pres_need >= pres_fill * threshold ? |
4252 bra check_gas_needs_attn ; YES - generate an attention | |
4253 ;bra check_gas_needs_ok ; NO - gas needs ok | |
4254 | |
4255 check_gas_needs_ok: | |
4256 bcf shown_gas_needs_warn ; re-arm custom view show-up for warning | |
4257 bcf shown_gas_needs_attn ; re-arm custom view show-up for attention | |
4258 return ; done | |
623 | 4259 |
631 | 4260 check_gas_needs_warn: |
634 | 4261 bsf warn_det_gas_needs ; set warning |
4262 bcf shown_gas_needs_attn ; re-arm custom view show-up for attention | |
4263 btfsc shown_gas_needs_warn ; has the custom view been shown before on warning level? | |
4264 bra check_gas_needs_mesg ; YES - do not show the gas needs custom view again | |
4265 btfsc custom_view_locked ; NO - custom view locked? | |
4266 bra check_gas_needs_mesg ; YES - do not show it now | |
4267 bsf shown_gas_needs_warn ; NO - set custom view as shown now | |
4268 bra check_gas_needs_cv ; - show gas needs custom view | |
4269 | |
4270 check_gas_needs_attn: | |
4271 bsf attn_det_gas_needs ; set attention | |
4272 bcf shown_gas_needs_warn ; re-arm custom view show-up for warning | |
4273 btfsc shown_gas_needs_attn ; has the custom view been shown before on attention level? | |
4274 bra check_gas_needs_mesg ; YES - do not show the gas needs custom view again | |
4275 btfsc custom_view_locked ; NO - custom view locked? | |
4276 bra check_gas_needs_mesg ; YES - do not show it now | |
4277 bsf shown_gas_needs_attn ; NO - set custom view as shown now | |
4278 ;bra check_gas_needs_cv ; - show gas needs custom view | |
4279 | |
4280 check_gas_needs_cv: | |
4281 movlw index_gas_needs_ascent ; get custom view number of gas needs | |
4282 call dive_customview_show ; show custom view | |
4283 ;bra check_gas_needs_mesg ; show message | |
4284 | |
4285 check_gas_needs_mesg: | |
4286 incf message_counter,F ; increase message counter | |
4287 goto TFT_message_gas_needs ; show message for gas needs and return | |
4288 | |
623 | 4289 |
4290 IFDEF _external_sensor | |
582 | 4291 |
634 | 4292 ;----------------------------------------------------------------------------- |
4293 ; Check external Sensors for Loss and Divergence | |
4294 ; | |
4295 check_ext_sensors: | |
4296 btfsc warn_det_sensors_lost ; all sensors lost? | |
4297 bra check_ext_sensors_lost_all ; YES - show a warning and return | |
4298 | |
4299 btfsc attn_det_sensor1_lost ; sensor 1 lost? | |
4300 rcall check_ext_sensors_lost_1 ; YES - show an attention | |
4301 | |
4302 btfsc attn_det_sensor2_lost ; sensor 2 lost? | |
4303 rcall check_ext_sensors_lost_2 ; YES - show an attention | |
4304 | |
4305 btfsc attn_det_sensor3_lost ; sensor 3 lost? | |
4306 rcall check_ext_sensors_lost_3 ; YES - show an attention | |
4307 | |
4308 btfsc warn_det_sensors_div ; sensor values divergence? | |
4309 bra check_ext_sensors_diverg ; YES - show a warning and return | |
4310 | |
4311 return ; done | |
4312 | |
4313 check_ext_sensors_lost_all: | |
4314 btfsc shown_sensors_lost ; has the custom view been shown before? | |
4315 bra warn_sensors_lost_mesg ; YES - do not show the sensor custom view again | |
4316 btfsc custom_view_locked ; NO - custom view locked? | |
4317 bra warn_sensors_lost_mesg ; YES - do not show it now | |
4318 bsf shown_sensors_lost ; NO - set it as shown now | |
4319 movlw index_ppo2_sensors ; - get custom view number of sensors | |
4320 call dive_customview_show ; - show custom view | |
4321 ;bra warn_sensors_lost_mesg ; - show message | |
4322 | |
4323 warn_sensors_lost_mesg: | |
4324 incf message_counter,F ; increase message counter | |
4325 goto TFT_message_fallback ; show message and return | |
4326 | |
4327 check_ext_sensors_lost_1: | |
4328 btfsc shown_sensor1_fail ; has the custom view been shown before for sensor 1? | |
4329 return ; YES - do not show the sensor custom view again | |
4330 btfsc custom_view_locked ; NO - custom view locked? | |
4331 return ; YES - do not show it now | |
4332 bsf shown_sensor1_fail ; NO - set it as shown now | |
4333 bra check_ext_sensors_show_cv ; - show sensor custom view | |
4334 | |
4335 check_ext_sensors_lost_2: | |
4336 btfsc shown_sensor2_fail ; has the custom view been shown before for sensor 2? | |
4337 return ; YES - do not show the sensor custom view again | |
4338 btfsc custom_view_locked ; NO - custom view locked? | |
4339 return ; YES - do not show it now | |
4340 bsf shown_sensor2_fail ; NO - set it as shown now | |
4341 bra check_ext_sensors_show_cv ; - show sensor custom view | |
4342 | |
4343 check_ext_sensors_lost_3: | |
4344 btfsc shown_sensor3_fail ; has the custom view been shown before for sensor 3? | |
4345 return ; YES - do not show the sensor custom view again | |
4346 btfsc custom_view_locked ; NO - custom view locked? | |
4347 return ; YES - do not show it now | |
4348 bsf shown_sensor3_fail ; NO - set it as shown now | |
4349 ;bra check_ext_sensors_show_cv ; - show sensor custom view | |
4350 | |
4351 check_ext_sensors_show_cv: | |
4352 movlw index_ppo2_sensors ; get custom view number of sensors | |
4353 goto dive_customview_show ; show custom view and return | |
4354 | |
4355 check_ext_sensors_diverg: | |
4356 btfsc shown_sensors_diverg ; has the custom view been shown before for divergence? | |
4357 bra check_ext_sensors_diverg_mesg ; YES - do not show the sensor custom view again | |
4358 btfsc custom_view_locked ; NO - custom view locked? | |
4359 bra check_ext_sensors_diverg_mesg ; YES - do not show it now | |
4360 bsf shown_sensors_diverg ; NO - set it as shown now | |
4361 movlw index_ppo2_sensors ; - get custom view number of sensors | |
4362 call dive_customview_show ; - show custom view | |
4363 ;bra check_ext_sensors_diverg_mesg ; - show message | |
4364 | |
4365 check_ext_sensors_diverg_mesg: | |
4366 incf message_counter,F ; increase message counter | |
4367 goto TFT_message_divergence ; show message and return | |
4368 | |
4369 ENDIF ; _external_sensor | |
4370 | |
623 | 4371 |
4372 ;============================================================================= | |
634 | 4373 dmode5 CODE |
623 | 4374 ;============================================================================= |
560 | 4375 |
634 | 4376 |
4377 ;----------------------------------------------------------------------------- | |
4378 ; Restart the Deco Engine | |
4379 ; | |
560 | 4380 global restart_deco_engine |
4381 global restart_deco_engine_wo_ceiling | |
4382 restart_deco_engine: | |
623 | 4383 banksel int_O_ceiling ; switch to bank where the shared "_O_" variables are stored |
4384 bsf int_O_ceiling+1,char_invalid_flag ; invalidate ceiling (int_O_ceiling has its invalid flag on a char's position!) | |
560 | 4385 |
4386 restart_deco_engine_wo_ceiling: | |
634 | 4387 banksel char_O_deco_gas ; switch to bank where the stops table is stored |
623 | 4388 bsf char_O_deco_gas+0,char_invalid_flag ; invalidate deco data (stop table data) |
634 | 4389 banksel int_O_NDL_norm ; switch to bank where the shared "_O_" variables are stored |
631 | 4390 bsf int_O_NDL_norm+1,int_invalid_flag ; invalidate NDL time (normal plan) |
4391 bsf int_O_TTS_norm+1,int_invalid_flag ; invalidate TTS time (normal plan) | |
4392 bsf int_O_TST_norm+1,int_invalid_flag ; invalidate TST time (normal plan) | |
623 | 4393 bsf int_O_CNS_norm+1,int_invalid_flag ; invalidate CNS at end of dive in normal plan |
631 | 4394 |
4395 restart_deco_engine_wo_norm: | |
4396 banksel common ; bank to bank common | |
4397 bsf request_restart_engine ; request restart of the deco engine | |
604 | 4398 |
4399 inval_alternative_plan_data: | |
634 | 4400 banksel int_O_NDL_alt ; switch to bank where the shared "_O_" variables are stored |
631 | 4401 bsf int_O_NDL_alt+1,int_invalid_flag ; invalidate NDL time (alternative plan) |
4402 bsf int_O_TTS_alt+1,int_invalid_flag ; invalidate TTS time (alternative plan) | |
4403 bsf int_O_TST_alt+1,int_invalid_flag ; invalidate TST time (alternative plan) | |
623 | 4404 bsf int_O_CNS_alt+1,int_invalid_flag ; invalidate CNS at end of dive in alternative plan |
4405 bsf int_O_gas_need_pres+1,int_invalid_flag ; invalidate ascent gas needs | |
604 | 4406 |
4407 IFDEF _rx_functions | |
623 | 4408 bsf int_O_pressure_need+1,int_not_avail_flag ; invalidate pressure needs to reading 1 (TR functions) |
4409 bsf int_O_pressure_need+3,int_not_avail_flag ; invalidate pressure needs to reading 2 (TR functions) | |
604 | 4410 ENDIF |
4411 | |
623 | 4412 banksel common ; bank to bank common |
4413 bsf new_deco_data_avail ; set flag for new NDL and deco data available to have the display updated | |
582 | 4414 |
634 | 4415 return ; done |
4416 | |
582 | 4417 |
4418 ;============================================================================= | |
634 | 4419 dmode6 CODE |
4420 ;============================================================================= | |
4421 | |
4422 | |
4423 ;----------------------------------------------------------------------------- | |
4424 ; Start-up Simulator Mode | |
582 | 4425 ; |
634 | 4426 global demo_divemode |
4427 demo_divemode: | |
631 | 4428 call TFT_ClearScreen ; blank screen |
4429 | |
4430 ; leaving menu mode, so have option values in EEPROM up-to-date | |
634 | 4431 btfsc option_changed ; do the options need to be stored to EEPROM ? |
631 | 4432 call option_check_and_store_all ; YES - check and store all option values in EEPROM |
604 | 4433 |
4434 ; +++ COMMENT OUT FOR TESTING PURPOSE ONLY !!! +++ | |
631 | 4435 bsf simulatormode ; restore tissue pressures and CNS value after finishing simulator use |
604 | 4436 ; +++ DO NOT COMMENT OUT IN OPERATIONAL USE !!! +++ |
560 | 4437 |
623 | 4438 call deco_push_tissues_to_vault ; back-up the tissue pressures (C-code) |
4439 banksel common ; back to bank common | |
4440 | |
4441 ; set simulated target depth | |
4442 movff char_I_bottom_depth,simulatormode_depth | |
4443 | |
4444 ; set initial simulated depth (needed to overcome end-of-dive detection) | |
4445 banksel pressure_rel_sim | |
4446 MOVLI simulator_startdepth,pressure_rel_sim | |
4447 banksel common | |
4448 | |
4449 ; switch ISR pressure calculations to simulator mode | |
4450 bcf quit_simulatormode ; clear flag for fast abort request | |
4451 bcf sensor_override_active ; make sure ISR mode switch confirmation is not older than from now on | |
4452 bsf sensor_override_request ; request ISR to switch to simulator mode | |
4453 btfss sensor_override_active ; has the ISR confirmed switch to simulator mode? | |
4454 bra $-2 ; NO - not yet, loop waiting for the ISR to kick in | |
4455 | |
4456 ; branch into dive mode | |
4457 bsf divemode ; activate dive mode (to be done after simulator mode is activated) | |
634 | 4458 goto diveloop ; start dive mode |
4459 | |
4460 ;----------------------------------------------------------------------------- | |
623 | 4461 |
4462 END |