Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/divemode.asm @ 627:8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
author | heinrichsweikamp |
---|---|
date | Sat, 11 Aug 2012 16:55:14 +0200 |
parents | bab5a9fc1b10 |
children | 6526a5b058b7 |
rev | line source |
---|---|
0 | 1 |
2 ; OSTC - diving computer code | |
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
4 | |
5 ; This program is free software: you can redistribute it and/or modify | |
6 ; it under the terms of the GNU General Public License as published by | |
7 ; the Free Software Foundation, either version 3 of the License, or | |
8 ; (at your option) any later version. | |
9 | |
10 ; This program is distributed in the hope that it will be useful, | |
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 ; GNU General Public License for more details. | |
14 | |
15 ; You should have received a copy of the GNU General Public License | |
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | |
18 | |
19 ; Mainroutines for divemode | |
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
21 ; written: 10/01/05 | |
22 ; last updated: 15/05/08 | |
23 ; known bugs: | |
24 ; ToDo: | |
25 | |
26 diveloop: | |
27 call diveloop_boot ; Boot tasks for all modes | |
28 | |
256 | 29 ; start timer3 for deco routine CPU usesage monitor |
30 movlw b'00000011' | |
31 movwf T3CON ; Timer3 with 32768Hz clock running | |
32 | |
0 | 33 ; Startup Tasks for all modes |
34 ostc_debug 'R' ; Sends debug-information to screen if debugmode active | |
35 call PLED_ClearScreen ; clean up OLED | |
36 call PLED_divemode_mask ; Display mask | |
37 call PLED_active_gas_divemode ; Display gas, if required | |
38 call PLED_temp_divemode ; Displays temperature | |
39 | |
626
bab5a9fc1b10
restore last used customview in dive- and surface-mode
heinrichsweikamp
parents:
623
diff
changeset
|
40 ; Reload last customview |
bab5a9fc1b10
restore last used customview in dive- and surface-mode
heinrichsweikamp
parents:
623
diff
changeset
|
41 read_int_eeprom d'94' ; Read last selected customview dive mode into EEDATA |
bab5a9fc1b10
restore last used customview in dive- and surface-mode
heinrichsweikamp
parents:
623
diff
changeset
|
42 movff EEDATA,menupos3 ; Copy to menupos3 |
bab5a9fc1b10
restore last used customview in dive- and surface-mode
heinrichsweikamp
parents:
623
diff
changeset
|
43 call customview_toggle2 ; Show customview |
bab5a9fc1b10
restore last used customview in dive- and surface-mode
heinrichsweikamp
parents:
623
diff
changeset
|
44 |
0 | 45 btfsc FLAG_apnoe_mode |
46 bsf realdive ; Set Realdive flag in Apnoe mode | |
47 | |
48 btfsc gauge_mode | |
49 bra diveloop_loop ; Skip in gauge mode | |
50 btfsc FLAG_apnoe_mode | |
51 bra diveloop_loop ; Skip in apnoe mode | |
52 | |
53 ; Startup Tasks for deco modes | |
54 call PLED_display_ndl_mask ; display "no stop" if not in gauge or apnoe mode | |
55 | |
413 | 56 btfss FLAG_const_ppO2_mode ; only in const_ppO2_mode |
57 bra diveloop_loop ; OC modes, skip | |
404
cd48cdb6e1ae
Add a setpoint change to the first depth sample in CC mode
heinrichsweikamp
parents:
398
diff
changeset
|
58 bsf setpoint_changed ; Add a setpoint change to the first depth sample in CC mode |
407 | 59 bsf event_occured ; set global event flag |
404
cd48cdb6e1ae
Add a setpoint change to the first depth sample in CC mode
heinrichsweikamp
parents:
398
diff
changeset
|
60 |
0 | 61 diveloop_loop: ; The diveloop starts here |
62 btfss onesecupdate ; tasks any new second | |
263
27c9bb14b008
making the seconds display in divemode smoother...
heinrichsweikamp
parents:
257
diff
changeset
|
63 bra diveloop_loop3 |
0 | 64 |
65 btfsc gauge_mode ; Only in gauge mode | |
66 bra diveloop_loop1a ; One Second Tasks in Gauge mode | |
67 btfsc FLAG_apnoe_mode ; Only in apnoe mode | |
68 bra diveloop_loop1b ; One Second Tasks in Apnoe mode | |
617 | 69 |
70 ; Update divetime | |
71 call customview_second ; Do every-second tasks for the custom view area | |
72 GETCUSTOM8 d'38' ; Show seconds (=1?) | |
73 movwf lo | |
74 movlw d'1' | |
75 cpfseq lo ; =1? | |
76 bra diveloop_loop1y ; No, minutes only | |
77 bsf update_divetime ; Set Update flag | |
78 diveloop_loop1y: | |
79 btfss update_divetime ; display new divetime? | |
80 bra diveloop_loop1z ; No | |
81 btfsc premenu ; Is the divemode menu active? | |
82 bra diveloop_loop1z ; Yes | |
83 call PLED_divemins ; Display (new) divetime! | |
84 diveloop_loop1z: | |
85 bcf update_divetime ; clear flag | |
86 | |
0 | 87 btfsc FLAG_const_ppO2_mode ; only in const_ppO2_mode |
88 bra diveloop_loop1c ; One Second Tasks in const_ppO2 mode | |
89 | |
90 ; Tasks only for OC modes | |
599 | 91 btfsc show_safety_stop ; Show the safety stop? |
92 call PLED_show_safety_stop ; Yes, show/delete if done. | |
0 | 93 call check_ppO2 ; check ppO2 and displays warning if required |
94 call calc_deko_divemode ; calculate decompression and display result (any two seconds) | |
95 bra diveloop_loop1x ; Common Tasks | |
96 | |
97 ; Tasks only for Gauge mode | |
98 diveloop_loop1a: | |
106 | 99 btfss premenu ; Is the divemode menu active? |
0 | 100 call PLED_divemins ; display (new) divetime! |
623 | 101 call customview_second ; Do every-second tasks for the custom view area |
0 | 102 call timeout_divemode ; dive finished? This routine sets the required flags |
103 | |
104 btfsc twosecupdate ; two seconds after the last call | |
263
27c9bb14b008
making the seconds display in divemode smoother...
heinrichsweikamp
parents:
257
diff
changeset
|
105 bra diveloop_loop1a2 ; Common Tasks |
0 | 106 |
263
27c9bb14b008
making the seconds display in divemode smoother...
heinrichsweikamp
parents:
257
diff
changeset
|
107 bsf twosecupdate ; Routines used in the "other second" |
27c9bb14b008
making the seconds display in divemode smoother...
heinrichsweikamp
parents:
257
diff
changeset
|
108 call calc_average_depth ; calculate average depth |
494 | 109 call calc_velocity ; calculate vertical velocity and display if > threshold (every two seconds) |
0 | 110 |
111 bra diveloop_loop1x ; Common Tasks | |
112 | |
113 diveloop_loop1a2: | |
114 bcf twosecupdate | |
115 bra diveloop_loop1x ; Common Tasks | |
116 | |
117 ; Tasks only for Apnoe mode | |
118 diveloop_loop1b: | |
119 call divemode_apnoe_tasks ; 1 sec. Apnoe tasks | |
120 bra diveloop_loop1x ; Common Tasks | |
121 | |
122 ; Tasks only for ppO2 mode | |
123 diveloop_loop1c: | |
599 | 124 btfsc show_safety_stop ; Show the safety stop? |
125 call PLED_show_safety_stop ; Yes, show/delete if done. | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
386
diff
changeset
|
126 call PLED_const_ppO2_value ; display const ppO2 setting in [bar] |
0 | 127 call calc_deko_divemode ; calculate decompression and display result (any two seconds) |
3 | 128 btfsc is_bailout ; Are we in Bailout mode? |
129 call check_ppO2_bail ; Yes, display ppO2 (If required) | |
130 | |
0 | 131 bra diveloop_loop1x ; Common Tasks |
132 | |
133 ; Common Tasks for all modes | |
134 diveloop_loop1x: | |
617 | 135 ; call customview_second ; Do every-second tasks for the custom view area |
136 ; | |
137 ; GETCUSTOM8 d'38' ; Show seconds (=1?) | |
138 ; movwf lo | |
139 ; movlw d'1' | |
140 ; cpfseq lo ; =1? | |
141 ; bra diveloop_loop1y ; No, minutes only | |
142 ; bsf update_divetime ; Set Update flag | |
143 ;diveloop_loop1y: | |
144 ; btfss update_divetime ; display new divetime? | |
145 ; bra diveloop_loop1z ; No | |
146 ; btfsc premenu ; Is the divemode menu active? | |
147 ; bra diveloop_loop1z ; Yes | |
148 ; call PLED_divemins ; Display (new) divetime! | |
149 ; | |
150 ;diveloop_loop1z: | |
151 ; bcf update_divetime ; clear flag | |
263
27c9bb14b008
making the seconds display in divemode smoother...
heinrichsweikamp
parents:
257
diff
changeset
|
152 |
617 | 153 btfsc ppO2_show_value ; show ppO2? |
154 call check_ppO2 ; check ppO2 and displays warning if required | |
0 | 155 call timeout_divemode ; dive finished? This routine sets the required flags |
156 btfsc low_battery_state ; If battery is low, then... | |
141 | 157 call update_batt_voltage_divemode ; Display Battery Warning Text |
0 | 158 btfsc premenu ; is Menu? displayed? |
159 call timeout_premenu_divemode ; No, so check for timeout premenu | |
160 btfsc menubit ; is the Dive mode menu displayed? | |
161 call timeout_divemenu ; Yes, so check for timeout divemenu | |
162 call set_leds_divemode ; Sets warnings, if required. Also Sets buzzer | |
163 btfsc enter_error_sleep ; Enter Fatal Error Routine? | |
617 | 164 call fatal_error_sleep ; Yes (In Sleepmode.asm!) |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
165 |
0 | 166 bcf onesecupdate ; one seconds update done |
167 | |
168 diveloop_loop3: | |
169 btfss menubit ; Divemode menu active? | |
170 call test_switches_divemode ; No, Check switches normal | |
171 | |
172 btfsc menubit ; Divemode menu active? | |
173 call test_switches_divemode_menu ; Yes, check switches divemode menu | |
174 | |
175 btfss divemode ; Dive finished? | |
498 | 176 goto end_dive ; Dive finished! |
0 | 177 |
178 btfsc pressure_refresh ; new pressure available? | |
179 call update_divemode1 ; Yes, display new depth | |
180 bcf pressure_refresh ; until new pressure is available | |
181 | |
182 btfsc oneminupdate ; one minute tasks | |
183 call update_divemode60 ; Update clock, etc. | |
184 | |
185 btfsc store_sample ; store new sample? | |
186 call store_dive_data ; Store profile data | |
187 | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
83
diff
changeset
|
188 btfsc toggle_customview ; Next view? |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
83
diff
changeset
|
189 call customview_toggle ; Yes, show next customview (and delete this flag) |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
83
diff
changeset
|
190 |
335 | 191 btfsc simulatormode_active ; Is Simualtor mode active ? |
192 bra diveloop_loop4 ; YES: don't sleep | |
2 | 193 |
335 | 194 btfsc menubit ; Sleep only with inactive menu... |
195 bra diveloop_loop5 | |
2 | 196 |
0 | 197 sleep |
198 nop | |
335 | 199 bra diveloop_loop ; Loop the divemode |
200 | |
201 diveloop_loop4: ; And test screen dumps too! | |
202 btfsc uart_dump_screen ; Asked to dump screen contains ? | |
203 call dump_screen ; Yes! | |
204 | |
205 diveloop_loop5: | |
0 | 206 bra diveloop_loop ; Loop the divemode |
207 | |
208 timeout_premenu_divemode: | |
128 | 209 incf timeout_counter3,F ; Yes... |
0 | 210 |
128 | 211 GETCUSTOM8 d'4' ; loads premenu_timeout into WREG |
212 cpfsgt timeout_counter3 ; ... longer then premenu_timeout | |
213 return ; No! | |
0 | 214 |
128 | 215 bcf premenu ; Yes, so clear "Menu?" and clear pre_menu bit |
216 call PLED_menu_clear ; Remove "Menu?" | |
498 | 217 call PLED_divemode_mask ; And redraw mask (Redraw missing "T" from "Tauchzeit" in german text version) |
622 | 218 call PLED_divemins ; Redraw divetime |
0 | 219 return |
220 | |
128 | 221 divemode_apnoe_tasks: ; 1 sec. Apnoe tasks |
623 | 222 call PLED_divemins ; display (new) divetime! |
0 | 223 call PLED_display_apnoe_descent ; Show descent timer |
224 | |
225 btfsc divemode2 ; Time running? | |
226 bra divemode_apnoe_tasks2 ; New descent, reset data if flag is set | |
227 | |
228 call PLED_display_apnoe_surface | |
229 incf apnoe_surface_secs,F | |
230 movlw d'60' | |
231 cpfseq apnoe_surface_secs | |
232 bra divemode_apnoe_tasks1 | |
233 clrf apnoe_surface_secs | |
234 incf apnoe_surface_mins,F | |
235 | |
236 divemode_apnoe_tasks1: | |
237 bcf FLAG_active_descent ; Clear flag | |
238 btfsc divemode2 ; Time running? | |
239 return ; Yes, return | |
240 | |
241 bsf FLAG_active_descent ; Set Flag | |
242 return | |
243 | |
244 divemode_apnoe_tasks2: | |
245 btfss FLAG_active_descent ; Are descending? | |
246 return ; No, We are at the surface | |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
247 call apnoe_calc_maxdepth ; Yes! |
0 | 248 |
249 divemode_apnoe_tasks3: | |
250 call PLED_apnoe_clear_surface ; Clear Surface timer | |
251 | |
252 clrf apnoe_timeout_counter ; Delete timeout | |
253 clrf apnoe_surface_secs | |
254 clrf apnoe_surface_mins | |
255 clrf apnoe_secs | |
256 clrf apnoe_mins ; Reset Descent time | |
257 clrf max_pressure+0 | |
258 clrf max_pressure+1 ; Reset Max. Depth | |
259 bcf FLAG_active_descent ; Clear flag | |
260 return | |
261 | |
262 apnoe_calc_maxdepth: | |
263 movff apnoe_max_pressure+0,sub_a+0 | |
264 movff apnoe_max_pressure+1,sub_a+1 | |
265 movff max_pressure+0,sub_b+0 | |
266 movff max_pressure+1,sub_b+1 | |
267 call sub16 ; sub_c = sub_a - sub_b | |
268 ; apnoe_max_pressure<max_pressure -> neg_flag=1 | |
269 ; max_pressure<=apnoe_max_pressure -> neg_flag=0 | |
270 btfss neg_flag | |
271 return | |
272 ;apnoe_max_pressure<max_pressure | |
273 movff max_pressure+0,apnoe_max_pressure+0 | |
274 movff max_pressure+1,apnoe_max_pressure+1 | |
275 return | |
276 | |
277 set_leds_divemode: | |
550 | 278 movff char_O_gradient_factor,lo ; gradient factor absolute (Non-GF model) |
279 movff char_I_deco_model,hi | |
280 decfsz hi,F ; jump over next line if char_I_deco_model == 1 | |
0 | 281 movff char_O_relative_gradient_GF,lo ; gradient factor relative (GF model) |
550 | 282 |
283 GETCUSTOM8 d'14' ; threshold for LED warning into WREG | |
284 cpfslt lo ; Lower then actual warning? | |
285 rcall warn_gf1 ; No, show warning and set flags | |
286 return ; Yes, return | |
0 | 287 |
288 warn_gf1: | |
289 movlw d'2' ; Type of Alarm | |
290 movwf AlarmType ; Copy to Alarm Register | |
291 bsf event_occured ; Set Event Flag | |
292 return | |
293 | |
294 calc_deko_divemode: | |
295 btfsc twosecupdate ; two seconds after the last call | |
296 bra calc_deko_divemode2 ; Yes, calculate and display deco data ("first second") | |
297 | |
49 | 298 bsf twosecupdate ; No, but next second! |
0 | 299 ; Routines used in the "other second" |
300 call calc_average_depth ; calculate average depth | |
494 | 301 call calc_velocity ; calculate vertical velocity and display if > threshold (every two seconds) |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
302 call set_reset_safety_stop ; Set flags for safety stop and/or reset safety stop |
0 | 303 |
292 | 304 ; Calculate CNS |
305 clrf WREG | |
306 movff WREG,char_I_step_is_1min ; Make sure to be in 2sec mode. | |
0 | 307 |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
308 read_int_eeprom d'34' ; Read deco data |
595 | 309 movlw .6 |
310 cpfseq EEDATA ; in pscr-mode? | |
311 rcall set_actual_ppo2 ; No, set char_I_actual_ppO2 | |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
312 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
313 calc_deko_divemode1a: |
116 | 314 call deco_calc_CNS_fraction ; calculate CNS |
0 | 315 movlb b'00000001' ; rambank 1 selected |
316 | |
317 ; Check if CNS should be displayed | |
318 movff char_O_CNS_fraction,lo ; copy into bank1 | |
319 GETCUSTOM8 d'27' ; cns_display_high | |
320 subwf lo,W | |
321 btfsc STATUS,C | |
322 call PLED_display_cns ; Show CNS | |
8 | 323 call check_gas_change ; Checks if a better gas should be selected (by user) |
324 | |
513 | 325 ;NOTE: always set full gas list, because the user can switch gas, |
326 ; even in NDL mode... | |
0 | 327 |
286 | 328 ; Copy all gases to char_I_deco_N2_ratio and char_I_deco_He_ratio |
507 | 329 divemode_check_decogases: ; CALLed from Simulator, too |
522 | 330 ASSERT_BANK1 .10001 ; Just make sure everything is correct. |
331 | |
332 clrf EEADRH ; Make sure to select eeprom bank 0 | |
0 | 333 |
513 | 334 read_int_eeprom d'7' ; Read He ratio |
335 movff EEDATA,char_I_deco_He_ratio+0 ; And copy into hold register | |
336 read_int_eeprom d'6' ; Read O2 ratio | |
337 movff char_I_deco_He_ratio+0,WREG ; Get back He -> WREG | |
338 addwf EEDATA,W ; O2 + He -> WREG | |
339 sublw d'100' ; 100 - (O2 + He) -> WREG | |
340 movff WREG, char_I_deco_N2_ratio+0; Push N2 to C code; | |
341 | |
342 read_int_eeprom d'11' ; Read He ratio | |
343 movff EEDATA,char_I_deco_He_ratio+1 ; And copy into hold register | |
344 read_int_eeprom d'10' ; Read O2 ratio | |
345 movff char_I_deco_He_ratio+1,WREG ; Get back He -> WREG | |
346 addwf EEDATA,W ; O2 + He -> WREG | |
347 sublw d'100' ; 100 - (O2 + He) -> WREG | |
348 movff WREG, char_I_deco_N2_ratio+1; Push N2 to C code; | |
49 | 349 |
291 | 350 read_int_eeprom d'15' ; Read He ratio |
224 | 351 movff EEDATA,char_I_deco_He_ratio+2 ; And copy into hold register |
291 | 352 read_int_eeprom d'14' ; Read O2 ratio |
513 | 353 movff char_I_deco_He_ratio+2,WREG ; Get back He -> WREG |
354 addwf EEDATA,W ; O2 + He -> WREG | |
355 sublw d'100' ; 100 - (O2 + He) -> WREG | |
356 movff WREG, char_I_deco_N2_ratio+2; Push N2 to C code; | |
49 | 357 |
291 | 358 read_int_eeprom d'19' ; Read He ratio |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
359 movff EEDATA,char_I_deco_He_ratio+3 ; And copy into hold register |
311
91371c7553f5
BUGFIX typo when passing Gas#4 to deko model (bug#43)
JeanDo
parents:
301
diff
changeset
|
360 read_int_eeprom d'18' ; Read O2 ratio |
513 | 361 movff char_I_deco_He_ratio+3,WREG ; Get back He -> WREG |
362 addwf EEDATA,W ; O2 + He -> WREG | |
363 sublw d'100' ; 100 - (O2 + He) -> WREG | |
364 movff WREG, char_I_deco_N2_ratio+3; Push N2 to C code; | |
0 | 365 |
291 | 366 read_int_eeprom d'23' ; Read He ratio |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
367 movff EEDATA,char_I_deco_He_ratio+4; And copy into hold register |
291 | 368 read_int_eeprom d'22' ; Read O2 ratio |
513 | 369 movff char_I_deco_He_ratio+4,WREG ; Get back He -> WREG |
370 addwf EEDATA,W ; O2 + He -> WREG | |
371 sublw d'100' ; 100 - (O2 + He) -> WREG | |
372 movff WREG, char_I_deco_N2_ratio+4; Push N2 to C code; | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
373 |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
374 ; Copy depth of enabled gas into char_I_deco_gas_change |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
375 ; Note gaslist_active is inited in diveloop_boot, and edited by |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
376 ; the de-activation menu. So don't reread it from eeprom here. |
39 | 377 |
281 | 378 read_int_eeprom d'28' ; read gas_change_depth Gas1 |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
379 btfss gaslist_active,0 ; Apply depth? |
221 | 380 clrf EEDATA ; No, clear! |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
381 movff EEDATA,char_I_deco_gas_change+0 ; Yes! |
221 | 382 |
281 | 383 read_int_eeprom d'29' ; read gas_change_depth Gas2 |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
384 btfss gaslist_active,1 ; Apply depth? |
221 | 385 clrf EEDATA ; No, clear! |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
386 movff EEDATA,char_I_deco_gas_change+1 ; Yes! |
45 | 387 |
281 | 388 read_int_eeprom d'30' ; read gas_change_depth Gas3 |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
389 btfss gaslist_active,2 ; Apply depth? |
221 | 390 clrf EEDATA ; No, clear! |
222
638f8e17bd51
Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents:
221
diff
changeset
|
391 movff EEDATA,char_I_deco_gas_change+2 ; Yes! |
221 | 392 |
281 | 393 read_int_eeprom d'31' ; read gas_change_depth Gas4 |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
394 btfss gaslist_active,3 ; Apply depth? |
221 | 395 clrf EEDATA ; No, clear! |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
396 movff EEDATA,char_I_deco_gas_change+3 ; Yes! |
221 | 397 |
281 | 398 read_int_eeprom d'32' ; read gas_change_depth Gas5 |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
399 btfss gaslist_active,4 ; Apply depth? |
221 | 400 clrf EEDATA ; No, clear! |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
401 movff EEDATA,char_I_deco_gas_change+4 ; Yes! |
33 | 402 return |
0 | 403 |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
404 set_reset_safety_stop: ; Set flags for safety stop and/or reset safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
405 GETCUSTOM8 d'65' ; Use safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
406 decfsz WREG,F ; WREG=1? |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
407 bra delete_safety_stop ; No, don't show safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
408 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
409 btfsc dekostop_active ; Is a deco stop displayed? |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
410 bra delete_safety_stop ; Yes, don't show safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
411 ; Below "safety_stop_reset"? Set flag and reset count-down timer |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
412 SAFE_2BYTE_COPY rel_pressure, lo |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
413 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
414 movff lo,sub_a+0 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
415 movff hi,sub_a+1 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
416 movlw LOW safety_stop_reset |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
417 movwf sub_b+0 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
418 movlw HIGH safety_stop_reset |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
419 movwf sub_b+1 |
603 | 420 call subU16 ; sub_c = sub_a - sub_b |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
421 btfss neg_flag |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
422 bra reset_safety_stop ; Below 10m, reset safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
423 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
424 ; Above "safety_stop_end"? Clear flag. |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
425 SAFE_2BYTE_COPY rel_pressure, lo |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
426 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
427 movff lo,sub_a+0 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
428 movff hi,sub_a+1 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
429 movlw LOW safety_stop_end |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
430 movwf sub_b+0 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
431 movlw HIGH safety_stop_end |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
432 movwf sub_b+1 |
603 | 433 call subU16 ; sub_c = sub_a - sub_b |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
434 btfsc neg_flag |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
435 bra delete_safety_stop ; Above 3m, remove safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
436 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
437 ; Above "safety_stop_start"? Activate safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
438 SAFE_2BYTE_COPY rel_pressure, lo |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
439 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
440 movff lo,sub_a+0 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
441 movff hi,sub_a+1 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
442 movlw LOW safety_stop_start |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
443 movwf sub_b+0 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
444 movlw HIGH safety_stop_start |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
445 movwf sub_b+1 |
603 | 446 call subU16 ; sub_c = sub_a - sub_b |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
447 btfsc neg_flag |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
448 bra acivate_safety_stop ; Above 5m, activate safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
449 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
450 bra reset_safety_stop2 ; Pause safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
451 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
452 acivate_safety_stop: |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
453 tstfsz safety_stop_countdown ; Countdown at zero? |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
454 bsf show_safety_stop ; No, Set flag! |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
455 return |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
456 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
457 delete_safety_stop: |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
458 clrf safety_stop_countdown ; reset timer |
603 | 459 bra reset_safety_stop2 ; Remove saftestop from display |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
460 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
461 reset_safety_stop: |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
462 movlw safety_stop_length ;[s] |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
463 movwf safety_stop_countdown ; reset timer |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
464 reset_safety_stop2: |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
465 btfss safety_stop_active ; Safety stop shown |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
466 return ; No, don't delete it |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
467 bcf show_safety_stop ; Clear flag |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
468 bcf safety_stop_active ; Clear flag |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
469 call PLED_clear_decoarea ; Yes, Clear stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
470 goto PLED_display_ndl_mask ; Show NDL again (And return) |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
471 |
292 | 472 ;----------------------------------------------------------------------------- |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
386
diff
changeset
|
473 ; calculate ppO2 in 0.01bar (e.g. 150 = 1.50 bar ppO2) |
292 | 474 set_actual_ppo2: |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
475 SAFE_2BYTE_COPY amb_pressure, xA ; P_amb in millibar (1000 = 1.00 bar). |
292 | 476 movlw d'10' |
477 movwf xB+0 | |
478 clrf xB+1 | |
479 call div16x16 ; xC=p_amb/10 (100 = 1.00 bar). | |
480 movff xC+0,xA+0 | |
481 movff xC+1,xA+1 | |
482 movff char_I_O2_ratio,xB+0 | |
483 clrf xB+1 | |
484 call mult16x16 ; char_I_O2_ratio * (p_amb/10) | |
485 movff xC+0,xA+0 | |
486 movff xC+1,xA+1 | |
487 movlw d'100' | |
488 movwf xB+0 | |
489 clrf xB+1 | |
490 call div16x16 ; xC=(char_I_O2_ratio * p_amb/10)/100 | |
491 | |
492 ; Copy ppO2 for CNS calculation | |
493 tstfsz xC+1 ; Is ppO2 > 2.55bar ? | |
494 setf xC+0 ; yes: bound to 2.55... better than wrap around. | |
495 | |
496 movff xC+0, char_I_actual_ppO2 ; copy last ppO2 to buffer register | |
497 btfsc FLAG_const_ppO2_mode ; do in const_ppO2_mode | |
498 movff char_I_const_ppO2, char_I_actual_ppO2 ; copy last ppO2 to buffer register | |
499 return | |
500 | |
0 | 501 reset_decompression_gases: ; reset the deco gas while in NDL |
502 ostc_debug 'F' ; Sends debug-information to screen if debugmode active | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
503 lfsr FSR2,char_I_deco_gas_change |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
504 clrf POSTINC2 ; Clear Gas1 |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
505 clrf POSTINC2 |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
506 clrf POSTINC2 |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
507 clrf POSTINC2 |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
508 clrf POSTINC2 ; Clear Gas5 |
0 | 509 return |
510 | |
511 calc_deko_divemode2: | |
512 bcf twosecupdate | |
513 | |
514 btfsc gauge_mode ; ignore decompression calculation in gauge mode | |
515 return | |
516 btfsc FLAG_apnoe_mode ; ignore decompression calculation in apnoe mode | |
517 return | |
518 | |
519 ostc_debug 'B' ; Sends debug-information to screen if debugmode active | |
313 | 520 ; Send nes state to screen, if debugmode active |
521 movff char_O_deco_status,WREG ; Status before call | |
522 addlw '0' ; Convert to ascii char | |
523 call ostc_debug1 ; and send. | |
524 | |
0 | 525 call divemode_prepare_flags_for_deco |
292 | 526 clrf WREG |
527 movff WREG,char_I_step_is_1min ; Force 2 second deco mode | |
40 | 528 |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
529 movff char_I_O2_ratio,lo_temp ; Backup original value for everything |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
530 movff char_I_N2_ratio,hi_temp ; Backup original value for everything |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
531 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
532 read_int_eeprom d'34' ; Read deco data |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
533 movlw .6 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
534 cpfseq EEDATA |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
535 bra calc_deko_divemode2a |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
536 ; in PSCR mode, compute fO2 into char_I_O2_ratio |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
537 call compute_pscr_ppo2 ; pSCR ppO2 into sub_c:2 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
538 movff sub_c+0,xA+0 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
539 movff sub_c+1,xA+1 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
540 movlw LOW .10 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
541 movwf xB+0 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
542 movlw HIGH .10 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
543 movwf xB+1 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
544 call mult16x16 ;xA*xB=xC -> xC:4 = ppO2*10 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
545 SAFE_2BYTE_COPY amb_pressure, xB |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
546 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
547 ; xC+0 has O2 in percent |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
548 movff xC+0,char_I_O2_ratio |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
549 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
550 movff char_I_He_ratio, wait_temp ; copy into bank1 register |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
551 bsf STATUS,C ; Borrow bit |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
552 movlw d'100' ; 100% |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
553 subfwb wait_temp,W ; minus He |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
554 bsf STATUS,C ; Borrow bit |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
555 subfwb xC+0,W ; minus O2 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
556 movff WREG, char_I_N2_ratio ; = N2! |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
557 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
558 calc_deko_divemode2a: |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
559 |
256 | 560 clrf TMR3L |
537 | 561 nop ; See errata DS80284E-page 2 |
256 | 562 clrf TMR3H ; Reset Timer3 |
563 | |
116 | 564 call deco_calc_hauptroutine ; calc_tissue |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
565 movlb b'00000001' ; rambank 1 selected |
0 | 566 ostc_debug 'C' ; Sends debug-information to screen if debugmode active |
567 | |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
568 movff lo_temp,char_I_O2_ratio ; Restore original value for everything |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
569 movff hi_temp,char_I_N2_ratio ; Restore original value for everything |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
570 |
256 | 571 btfss debug_mode ; Are we in debugmode? |
572 bra calc_deko_divemode4 ; No... | |
573 | |
574 ; Show timer3 reading converted into ms (Error: +2,3%) in custom area | |
575 movff TMR3L,lo | |
576 movff TMR3H,hi | |
577 bcf STATUS,C | |
578 rrcf hi | |
579 rrcf lo ;/2 | |
580 bcf STATUS,C | |
581 rrcf hi | |
582 rrcf lo ;/4 | |
583 bcf STATUS,C | |
584 rrcf hi | |
585 rrcf lo ;/8 | |
586 bcf STATUS,C | |
587 rrcf hi | |
588 rrcf lo ;/16 | |
589 bcf STATUS,C | |
590 rrcf hi | |
591 rrcf lo ;/32 | |
592 | |
593 WIN_TOP .216 | |
594 WIN_LEFT .100 | |
595 WIN_FONT FT_SMALL | |
596 STRCPY "ms:" | |
597 output_16 | |
598 call word_processor | |
599 | |
600 calc_deko_divemode4: | |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
601 movff char_O_deco_status,WREG ; Is a compute cycle finished ? |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
602 iorwf WREG,F |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
603 btfss STATUS,Z |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
604 return ; Return is status <> 0 |
256 | 605 |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
606 ; Check if deco stops are necessary ? |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
607 movff char_O_first_deco_depth,wait_temp ; copy ceiling to temp register |
0 | 608 tstfsz wait_temp ; Ceiling<0m? |
609 bra calc_deko_divemode3 ; Yes! | |
610 | |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
611 btfsc dekostop_active ; Already in nodeco mode ? |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
612 call PLED_display_ndl_mask ; Clear deco data, display nostop time |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
613 bcf dekostop_active ; clear flag |
0 | 614 |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
615 clrf decodata+0 ; for profile memory |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
616 movff char_O_nullzeit,decodata+1 ; nostop time |
0 | 617 |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
618 call PLED_display_ndl ; display no deco limit |
0 | 619 |
323 | 620 calc_deko_divemode5: |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
621 ; Check if extra cycles are needed to compute @5 variant: |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
622 btfss tts_extra_time ; Is @5 displayed ? |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
623 return ; No: don't compute it. |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
624 |
313 | 625 decfsz apnoe_mins ; Reached count-down ? |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
626 return ; No: don't compute yet. |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
627 |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
628 movlw .6 |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
629 movff WREG,char_O_deco_status ; Stole next cycles for @5 variant. |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
630 |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
631 movlw .2 ; Restart countdown. |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
632 movwf apnoe_mins |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
633 return |
323 | 634 |
635 calc_deko_divemode3: | |
636 btfss dekostop_active ; Already in deco mode ? | |
637 call PLED_display_deko_mask ; clear nostop time, display decodata | |
638 bsf dekostop_active ; Set flag | |
639 | |
640 movff char_O_first_deco_depth,decodata+0 ; ceiling | |
641 movff char_O_first_deco_time,decodata+1 ; length of first stop in minues | |
642 | |
643 call PLED_display_deko ; display decodata | |
644 bra calc_deko_divemode5 | |
313 | 645 |
124 | 646 ;----------------------------------------------------------------------------- |
69 | 647 |
237 | 648 divemode_prepare_flags_for_deco: |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
649 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy result to deco routine |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
650 |
197 | 651 GETCUSTOM8 d'11' ; Saturation multiplier % |
652 movff WREG,char_I_saturation_multiplier | |
653 GETCUSTOM8 d'12' ; Desaturation multiplier % | |
654 movff WREG,char_I_desaturation_multiplier | |
655 GETCUSTOM8 d'16' ; Deco distance to decostop in 1/10 meter for simulation | |
656 movff WREG,char_I_deco_distance | |
657 GETCUSTOM8 d'29' ; Depth Last Deco in meter for simulation | |
658 movff WREG,char_I_depth_last_deco | |
203 | 659 movff divemins+0,int_I_divemins+0 ; Current dive time. |
660 movff divemins+1,int_I_divemins+1 | |
197 | 661 goto restart_set_modes_and_flags ; Sets decomode (char_I_deco_model) and flags (again) |
0 | 662 |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
663 ;----------------------------------------------------------------------------- |
0 | 664 |
665 store_dive_data: ; CF20 seconds gone | |
666 bcf store_sample ; update only any CF20 seconds | |
667 bsf update_divetime ; update divemins every CF20 seconds | |
668 | |
233 | 669 ifndef __DEBUG |
670 btfsc simulatormode_active ; Are we in simulator mode? | |
671 return ; Yes, discard everything | |
672 endif | |
33 | 673 |
0 | 674 btfsc header_stored ; Header already stored? |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
69
diff
changeset
|
675 bra store_dive_data2 ; Yes, store only profile data |
0 | 676 bsf header_stored ; Store header |
677 | |
678 movff eeprom_address+0, eeprom_header_address+0 ; store startposition | |
679 movff eeprom_address+1, eeprom_header_address+1 ; store startposition | |
680 | |
681 ; shift address for header | |
682 ; the header will be stored after the dive | |
457 | 683 incf_eeprom_address d'57' ; Macro, that adds 8Bit to eeprom_address:2 |
0 | 684 |
685 store_dive_data2: | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
686 SAFE_2BYTE_COPY rel_pressure, lo |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
687 movf lo,W ; store depth with every sample |
0 | 688 call write_external_eeprom |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
689 movf hi,W |
0 | 690 call write_external_eeprom |
691 | |
692 ;First, find out how many bytes will append to this sample.... | |
693 clrf ProfileFlagByte ; clear number of bytes to append | |
694 | |
695 ; Check Extented informations | |
696 decfsz divisor_temperature,W ; Check divisor | |
697 bra check_extended1 | |
698 movlw d'2' ; Information length | |
699 addwf ProfileFlagByte,F ; add to ProfileFlagByte | |
700 check_extended1: | |
701 decfsz divisor_deco,W ; Check divisor | |
702 bra check_extended2 | |
703 movlw d'2' ; Information length | |
704 addwf ProfileFlagByte,F ; add to ProfileFlagByte | |
705 check_extended2: | |
374 | 706 decfsz divisor_gf,W ; Check divisor |
0 | 707 bra check_extended3 |
374 | 708 movlw d'1' ; Information length |
0 | 709 addwf ProfileFlagByte,F ; add to ProfileFlagByte |
710 check_extended3: | |
711 decfsz divisor_ppo2,W ; Check divisor | |
712 bra check_extended4 | |
713 movlw d'3' ; Information length | |
714 addwf ProfileFlagByte,F ; add to ProfileFlagByte | |
715 check_extended4: | |
716 decfsz divisor_deco_debug,W; Check divisor | |
717 bra check_extended5 | |
718 movlw d'9' ; Information length | |
719 addwf ProfileFlagByte,F ; add to ProfileFlagByte | |
720 check_extended5: | |
367 | 721 decfsz divisor_cns,W ; Check divisor |
0 | 722 bra check_extended6 |
367 | 723 movlw d'1' ; Information length |
0 | 724 addwf ProfileFlagByte,F ; add to ProfileFlagByte |
725 check_extended6: | |
726 | |
727 ; Second, check global event flag | |
728 btfss event_occured ; Check global event flag | |
729 bra store_dive_data3 ; No Event | |
730 movlw d'1' | |
731 addwf ProfileFlagByte,F ; add one byte (The EventByte) | |
732 | |
733 clrf EventByte ; reset EventByte | |
734 | |
735 movf AlarmType,W ; Type of Alarm Bit 0-3 | |
736 addwf EventByte,F ; Copy to EventByte Bit 0-3 | |
737 clrf AlarmType ; Reset AlarmType | |
738 | |
739 ; Third, check events and add aditional bytes | |
740 btfss manual_gas_changed ; Check flag | |
741 bra check_event1 | |
742 movlw d'2' ; Information length | |
743 addwf ProfileFlagByte,F ; add to ProfileFlagByte | |
744 bsf EventByte,4 ; Also set Flag in EventByte! | |
745 check_event1: | |
746 btfss stored_gas_changed ; Check flag | |
747 bra check_event2 | |
748 movlw d'1' ; Information length | |
749 addwf ProfileFlagByte,F ; add to ProfileFlagByte | |
750 bsf EventByte,5 ; Also set Flag in EventByte! | |
751 check_event2: | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
752 btfss setpoint_changed ; Check flag |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
753 bra check_event3 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
754 movlw d'1' ; Information length |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
755 addwf ProfileFlagByte,F ; add to ProfileFlagByte |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
756 bsf EventByte,6 ; Also set Flag in EventByte! |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
757 check_event3: |
0 | 758 bsf ProfileFlagByte,7 ; Set EventByte Flag in ProfileFlagByte |
759 | |
760 store_dive_data3: | |
761 movf ProfileFlagByte,W ; finally, write ProfileFlagByte! | |
762 call write_external_eeprom | |
763 | |
764 btfss event_occured ; Check global event flag (again) | |
765 bra store_dive_data4 ; No Event | |
766 | |
767 ; Store the EventByte + additional bytes now | |
768 movf EventByte,W | |
769 call write_external_eeprom | |
770 | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
771 btfss manual_gas_changed ; Check flag |
0 | 772 bra store_dive_data3a |
773 read_int_eeprom d'24' ; % O2 Gas6 | |
774 movf EEDATA,W | |
775 call write_external_eeprom | |
776 read_int_eeprom d'25' ; % He Gas6 | |
777 movf EEDATA,W | |
778 call write_external_eeprom | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
779 bcf manual_gas_changed ; Clear this event |
0 | 780 |
781 store_dive_data3a: | |
782 btfss stored_gas_changed ; Check flag | |
783 bra store_dive_data3b | |
784 movf active_gas,W ; Store active gas | |
785 call write_external_eeprom | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
786 bcf stored_gas_changed ; Clear this event |
0 | 787 store_dive_data3b: |
788 | |
789 store_dive_data4: | |
790 | |
791 ; Store extended informations | |
792 decfsz divisor_temperature,F ; Check divisor | |
793 bra store_extended1 | |
794 rcall store_dive_temperature | |
795 store_extended1: | |
796 decfsz divisor_deco,F ; Check divisor | |
797 bra store_extended2 | |
798 rcall store_dive_decodata | |
799 store_extended2: | |
374 | 800 decfsz divisor_gf,F ; Check divisor |
0 | 801 bra store_extended3 |
374 | 802 rcall store_dive_gf |
0 | 803 store_extended3: |
804 decfsz divisor_ppo2,F ; Check divisor | |
805 bra store_extended4 | |
806 rcall store_dive_ppo2 | |
807 store_extended4: | |
808 decfsz divisor_deco_debug,F; Check divisor | |
809 bra store_extended5 | |
810 rcall store_dive_decodebug | |
811 store_extended5: | |
367 | 812 decfsz divisor_cns,F ; Check divisor |
0 | 813 bra store_extended6 |
367 | 814 rcall store_dive_cns |
0 | 815 store_extended6: |
816 | |
817 ; The next block is required to take care of "store never" | |
818 btfsc divisor_temperature,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!) | |
819 clrf divisor_temperature ; And clear register again, so it will never reach zero... | |
820 btfsc divisor_deco,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!) | |
821 clrf divisor_deco ; And clear register again, so it will never reach zero... | |
374 | 822 btfsc divisor_gf,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!) |
823 clrf divisor_gf ; And clear register again, so it will never reach zero... | |
0 | 824 btfsc divisor_ppo2,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!) |
825 clrf divisor_ppo2 ; And clear register again, so it will never reach zero... | |
826 btfsc divisor_deco_debug,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!) | |
827 clrf divisor_deco_debug ; And clear register again, so it will never reach zero... | |
367 | 828 btfsc divisor_cns,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!) |
829 clrf divisor_cns ; And clear register again, so it will never reach zero... | |
0 | 830 |
831 ostc_debug 'D' ; Sends debug-information to screen if debugmode active | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
832 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
833 ; SetPoint change appended to information due to compatibility reasons |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
834 btfss setpoint_changed ; Check flag |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
835 bra store_dive_data5 |
447 | 836 movff ppO2_setpoint_store,WREG ; SetPoint in cbar |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
837 call write_external_eeprom |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
838 bcf setpoint_changed ; Clear this event |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
839 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
840 store_dive_data5: |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
841 bcf event_occured ; Clear the global event flag |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
842 return ; Done. (Sample with all informations written to EEPROM) |
0 | 843 |
367 | 844 store_dive_cns: |
845 movff char_O_CNS_fraction,WREG | |
846 call write_external_eeprom ; Store in EEPROM | |
0 | 847 GETCUSTOM8 d'26' |
367 | 848 movwf divisor_cns ; Reload divisor from CF |
0 | 849 return |
850 | |
851 store_dive_decodebug: | |
532 | 852 ; do something here |
0 | 853 GETCUSTOM8 d'25' |
854 movwf divisor_deco_debug ; Reload divisor from CF | |
855 return | |
856 | |
857 store_dive_ppo2: | |
858 movlw 0x00 ; Dummy | |
859 call write_external_eeprom | |
860 movlw 0x00 ; Dummy | |
861 call write_external_eeprom | |
862 movlw 0x00 ; Dummy | |
863 call write_external_eeprom | |
864 GETCUSTOM8 d'24' | |
865 movwf divisor_ppo2 ; Reload divisor from CF | |
866 return | |
867 | |
374 | 868 store_dive_gf: |
375 | 869 movff char_O_gradient_factor,WREG ; gradient factor absolute |
0 | 870 call write_external_eeprom |
871 GETCUSTOM8 d'23' | |
374 | 872 movwf divisor_gf ; Reload divisor from CF |
0 | 873 return |
874 | |
875 store_dive_decodata: | |
876 movf decodata+0,W ; =0:no stop dive, if in deco mode: ceiling in m | |
877 call write_external_eeprom | |
878 movf decodata+1,W ; no stop time of length of first stop | |
879 call write_external_eeprom | |
880 GETCUSTOM8 d'22' | |
457 | 881 |
882 btfsc FLAG_apnoe_mode ; in Apnoe mode? | |
883 movlw d'0' ; Yes, set to zero | |
0 | 884 movwf divisor_deco ; Reload divisor from CF |
885 return | |
886 | |
887 store_dive_temperature: | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
888 SAFE_2BYTE_COPY temperature,lo |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
889 movf lo,W ; append temperature to current sample! |
0 | 890 call write_external_eeprom |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
891 movf hi,W |
0 | 892 call write_external_eeprom |
893 GETCUSTOM8 d'21' | |
894 movwf divisor_temperature ; Reload divisor from CF | |
895 return | |
896 | |
897 calc_velocity: ; called every two seconds | |
898 btfss divemode | |
899 bra do_not_display_velocity ; display velocity only in divemode | |
900 | |
901 calc_velocity2: | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
902 SAFE_2BYTE_COPY amb_pressure, sub_a |
0 | 903 movff last_pressure+0,sub_b+0 |
904 movff last_pressure+1,sub_b+1 | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
905 movff sub_a+0,last_pressure+0 ; store old value for velocity |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
906 movff sub_a+1,last_pressure+1 |
0 | 907 |
908 call sub16 ; sub_c = amb_pressure - last_pressure | |
909 | |
910 movff sub_c+0,xA+0 | |
911 movff sub_c+1,xA+1 | |
494 | 912 movlw d'39' ;77 when called every second.... |
0 | 913 movwf xB+0 |
914 clrf xB+1 | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
386
diff
changeset
|
915 call mult16x16 ; differential pressure in mbar*77... |
0 | 916 movff xC+0,divA+0 |
917 movff xC+1,divA+1 | |
918 movlw d'7' | |
919 movwf divB | |
920 call div16 ; devided by 2^7 equals velocity in m/min | |
921 | |
922 movlw d'99' | |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
923 cpfsgt divA ; Limit to 99m/min max. |
0 | 924 bra calc_velocity3 |
925 movwf divA ; divA=99 | |
926 | |
927 calc_velocity3: | |
928 GETCUSTOM8 d'5' ; threshold for display vertical velocity | |
929 subwf divA+0,W ; | |
930 | |
931 btfss STATUS,C | |
932 bra do_not_display_velocity | |
933 | |
934 update_velocity: | |
935 bsf display_velocity | |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
936 |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
937 GETCUSTOM8 d'60' ; use graphic velocity (=1)? |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
938 movwf lo |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
939 movlw d'1' |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
940 cpfseq lo ; =1? |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
941 bra update_velocity1 ; No |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
942 |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
943 call PLED_display_velocity_graphical |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
944 return |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
945 |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
486
diff
changeset
|
946 update_velocity1: |
0 | 947 call PLED_display_velocity |
948 return | |
949 | |
950 do_not_display_velocity: | |
951 btfss display_velocity ; Velocity was not displayed, do not delete | |
952 return | |
953 | |
954 bcf display_velocity ; Velocity was displayed, delete velocity now | |
955 call PLED_display_velocity_clear | |
956 return | |
957 | |
237 | 958 check_ppO2: ; check current ppO2 and display warning if required |
959 btfsc FLAG_const_ppO2_mode ; ignore in ppO2 mode.... | |
0 | 960 return |
961 | |
3 | 962 check_ppO2_bail: ; In CC mode but bailout active! |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
963 read_int_eeprom d'34' ; Read deco data |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
964 movlw .6 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
965 cpfseq EEDATA |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
966 bra check_ppO2_non_pscr |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
967 ; in PSCR mode |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
968 call compute_pscr_ppo2 ; pSCR ppO2 into sub_c:2 |
595 | 969 movff sub_c+0,xA+0 |
970 movff sub_c+1,xA+1 | |
971 movlw d'100' | |
972 movwf xB+0 | |
973 clrf xB+1 | |
974 call div16x16 ; /100 | |
975 tstfsz xC+1 ; Is ppO2 > 2.55bar ? | |
976 setf xC+0 ; yes: bound to 2.55... better than wrap around. | |
977 movff xC+0,char_I_actual_ppO2 ; copy last ppO2 to buffer register (for pSCR CNS) | |
978 clrf xC+2 | |
979 clrf xC+3 | |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
980 movff sub_c+0,xC+0 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
981 movff sub_c+1,xC+1 ; copy for comptibility |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
982 bra check_ppO2_check |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
983 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
984 check_ppO2_non_pscr: |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
985 SAFE_2BYTE_COPY amb_pressure, xA |
0 | 986 movlw d'10' |
987 movwf xB+0 | |
988 clrf xB+1 | |
989 call div16x16 ; xC=p_amb/10 | |
990 movff xC+0,xA+0 | |
991 movff xC+1,xA+1 | |
992 movff char_I_O2_ratio,xB+0 | |
993 clrf xB+1 | |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
994 call mult16x16 ; char_I_O2_ratio * p_amb/10 -> xC:4 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
995 ; bra check_ppO2_check |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
577
diff
changeset
|
996 check_ppO2_check: |
74 | 997 ; Check very high ppO2 manually |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
386
diff
changeset
|
998 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? |
74 | 999 bra check_ppO2_bail2 ; Yes, display Value! |
1000 | |
0 | 1001 ; Check if ppO2 should be displayed |
1002 movff xC+0,sub_b+0 | |
1003 movff xC+1,sub_b+1 | |
1004 GETCUSTOM8 d'19' ; ppo2_display_high | |
1005 mullw d'100' ; ppo2_display_high*100 | |
1006 movff PRODL,sub_a+0 | |
1007 movff PRODH,sub_a+1 | |
1008 call sub16 | |
1009 bcf ppO2_show_value ; clear flag | |
1010 btfsc neg_flag | |
1011 bsf ppO2_show_value ; set flag if required | |
1012 | |
1013 ;check if we are within our warning thresholds! | |
1014 movff xC+0,sub_b+0 | |
1015 movff xC+1,sub_b+1 | |
1016 GETCUSTOM8 d'18' ; ppo2_warning_high | |
1017 mullw d'100' ; ppo2_warning_high*100 | |
1018 movff PRODL,sub_a+0 | |
1019 movff PRODH,sub_a+1 | |
1020 call sub16 | |
1021 btfss neg_flag | |
1022 bra check_ppO2_0 ; Not too high | |
1023 | |
74 | 1024 check_ppO2_bail2: |
1025 bsf ppO2_show_value ; set flag if required | |
0 | 1026 movlw d'5' ; Type of Alarm |
1027 movwf AlarmType ; Copy to Alarm Register | |
1028 bsf event_occured ; Set Event Flag | |
1029 | |
1030 check_ppO2_0: | |
1031 movff xC+0,sub_b+0 | |
1032 movff xC+1,sub_b+1 | |
210 | 1033 GETCUSTOM8 d'17' ; ppo2_warning_low |
1034 mullw d'100' ; ppo2_warning_low*100 | |
0 | 1035 movff PRODL,sub_a+0 |
1036 movff PRODH,sub_a+1 | |
1037 call sub16 | |
1038 btfsc neg_flag | |
1039 bra check_ppO2_1 ; Not too low | |
1040 | |
1041 bsf ppO2_show_value ; show ppO2 if below threshold! | |
1042 movlw d'4' ; Type of Alarm | |
1043 movwf AlarmType ; Copy to Alarm Register | |
1044 bsf event_occured ; Set Event Flag | |
1045 | |
1046 check_ppO2_1: | |
1047 btfsc ppO2_show_value ; show value? | |
1048 bra check_ppO2_2 ; yes! | |
1049 | |
1050 btfss ppO2_display_active ; is the value displayed? | |
1051 bra check_ppO2_3 ; No, so clear not required | |
1052 | |
1053 call PLED_show_ppO2_clear; Clear ppO2 value | |
1054 bcf ppO2_display_active ; clear flag | |
1055 bra check_ppO2_3 ; done | |
1056 | |
1057 check_ppO2_2: | |
1058 call PLED_show_ppO2 ; Display ppO2 (stored in xC) | |
1059 bsf ppO2_display_active ; Set flag | |
1060 | |
1061 check_ppO2_3: | |
1062 return ; done | |
1063 | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1064 ;============================================================================= |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1065 ; Compare all enabled gas in list, to see if a better one is available. |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1066 ; |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1067 ; Output: better_gas_available, better_gas_number |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1068 ; |
210 | 1069 check_gas_change: ; Checks if a better gas should be selected (by user) |
8 | 1070 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1071 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1072 SAFE_2BYTE_COPY rel_pressure,xA |
8 | 1073 movlw d'100' |
1074 movwf xB+0 | |
1075 clrf xB+1 | |
1076 call div16x16 ; compute depth in full m -> result in xC+0 | |
1077 | |
1078 check_gas_change1: ; check gas1 | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1079 btfss gaslist_active,0 ; check active flag |
8 | 1080 bra check_gas_change2 ; skip inactive gases! |
1081 movlw d'1' | |
1082 cpfseq active_gas ; is this gas currently selected? | |
1083 bra check_gas_change1x ; No... | |
1084 bra check_gas_change2 ; Yes, skip depth check | |
1085 check_gas_change1x: | |
1086 read_int_eeprom d'28' ; read gas_change_depth | |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1087 movlw minimum_change_depth |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1088 cpfsgt EEDATA ; Change depth>minimum_change_depth? |
8 | 1089 bra check_gas_change2 ; No, Change depth not deep enough, skip! |
1090 movf xC+0,W ; load depth in m into WREG | |
1091 cpfsgt EEDATA ; gas_change_depth < current depth? | |
1092 bra check_gas_change2 ; No, check next gas | |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1093 movlw .1 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1094 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1095 movlw better_gas_window |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1096 subwf EEDATA,W ; Change depth-better_gas_window |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1097 cpfslt xC+0 ; current depth<Change depth-better_gas_window? |
8 | 1098 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1099 | |
1100 check_gas_change2: ; check gas2 | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1101 btfss gaslist_active,1 ; check active flag |
8 | 1102 bra check_gas_change3 ; skip inactive gases! |
1103 movlw d'2' | |
1104 cpfseq active_gas ; is this gas currently selected? | |
1105 bra check_gas_change2x ; No... | |
1106 bra check_gas_change3 ; Yes, skip depth check | |
1107 check_gas_change2x: | |
1108 read_int_eeprom d'29' ; read gas_change_depth | |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1109 movlw minimum_change_depth |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1110 cpfsgt EEDATA ; Change depth>minimum_change_depth? |
8 | 1111 bra check_gas_change3 ; No, Change depth not deep enough, skip! |
1112 movf xC+0,W ; load depth in m into WREG | |
1113 cpfsgt EEDATA ; gas_change_depth < current depth? | |
1114 bra check_gas_change3 ; No, check next gas | |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1115 movlw .2 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1116 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1117 movlw better_gas_window |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1118 subwf EEDATA,W ; Change depth-better_gas_window |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1119 cpfslt xC+0 ; current depth<Change depth-better_gas_window? |
8 | 1120 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1121 | |
1122 check_gas_change3: ; check gas3 | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1123 btfss gaslist_active,2 ; check active flag |
8 | 1124 bra check_gas_change4 ; skip inactive gases! |
1125 movlw d'3' | |
1126 cpfseq active_gas ; is this gas currently selected? | |
1127 bra check_gas_change3x ; No... | |
1128 bra check_gas_change4 ; Yes, skip depth check | |
1129 check_gas_change3x: | |
1130 read_int_eeprom d'30' ; read gas_change_depth | |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1131 movlw minimum_change_depth |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1132 cpfsgt EEDATA ; Change depth>minimum_change_depth? |
8 | 1133 bra check_gas_change4 ; No, Change depth not deep enough, skip! |
1134 movf xC+0,W ; load depth in m into WREG | |
1135 cpfsgt EEDATA ; gas_change_depth < current depth? | |
1136 bra check_gas_change4 ; No, check next gas | |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1137 movlw .3 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1138 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1139 movlw better_gas_window |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1140 subwf EEDATA,W ; Change depth-better_gas_window |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1141 cpfslt xC+0 ; current depth<Change depth-better_gas_window? |
8 | 1142 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1143 | |
1144 check_gas_change4: ; check gas4 | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1145 btfss gaslist_active,3 ; check active flag |
8 | 1146 bra check_gas_change5 ; skip inactive gases! |
1147 movlw d'4' | |
1148 cpfseq active_gas ; is this gas currently selected? | |
1149 bra check_gas_change4x ; No... | |
1150 bra check_gas_change5 ; Yes, skip depth check | |
1151 check_gas_change4x: | |
1152 read_int_eeprom d'31' ; read gas_change_depth | |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1153 movlw minimum_change_depth |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1154 cpfsgt EEDATA ; Change depth>minimum_change_depth? |
8 | 1155 bra check_gas_change5 ; No, Change depth not deep enough, skip! |
1156 movf xC+0,W ; load depth in m into WREG | |
1157 cpfsgt EEDATA ; gas_change_depth < current depth? | |
1158 bra check_gas_change5 ; No, check next gas | |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1159 movlw .4 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1160 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1161 movlw better_gas_window |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1162 subwf EEDATA,W ; Change depth-better_gas_window |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1163 cpfslt xC+0 ; current depth<Change depth-better_gas_window? |
8 | 1164 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1165 | |
1166 check_gas_change5: ; check gas5 | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1167 btfss gaslist_active,4 ; check active flag |
8 | 1168 bra check_gas_change6 ; skip inactive gases! |
1169 movlw d'5' | |
1170 cpfseq active_gas ; is this gas currently selected? | |
1171 bra check_gas_change5x ; No... | |
1172 bra check_gas_change6 ; Yes, skip depth check | |
1173 check_gas_change5x: | |
1174 read_int_eeprom d'32' ; read gas_change_depth | |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1175 movlw minimum_change_depth |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1176 cpfsgt EEDATA ; Change depth>minimum_change_depth? |
8 | 1177 bra check_gas_change6 ; No, Change depth not deep enough, skip! |
1178 movf xC+0,W ; load depth in m into WREG | |
1179 cpfsgt EEDATA ; gas_change_depth < current depth? | |
1180 bra check_gas_change6 ; No, check next gas | |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1181 movlw .5 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1182 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1183 movlw better_gas_window |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1184 subwf EEDATA,W ; Change depth-better_gas_window |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1185 cpfslt xC+0 ; current depth<Change depth-better_gas_window? |
8 | 1186 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1187 | |
612
ec2cfd4b748b
Blink better gas in bailout case (if CF42=1)
heinrichsweikamp
parents:
603
diff
changeset
|
1188 check_gas_change6: |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1189 btfss better_gas_available ; Is a better gas available |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1190 clrf better_gas_number ; No, clear better gas register |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1191 |
612
ec2cfd4b748b
Blink better gas in bailout case (if CF42=1)
heinrichsweikamp
parents:
603
diff
changeset
|
1192 btfsc is_bailout ;=1: CC mode, but bailout active! |
ec2cfd4b748b
Blink better gas in bailout case (if CF42=1)
heinrichsweikamp
parents:
603
diff
changeset
|
1193 bra check_gas_change7 ; In bailout, blink better gas (if required) |
ec2cfd4b748b
Blink better gas in bailout case (if CF42=1)
heinrichsweikamp
parents:
603
diff
changeset
|
1194 |
505
24e018713ea2
fix bb bug #66: CCR air mode: should not blink for my bailout
heinrichsweikamp
parents:
498
diff
changeset
|
1195 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? |
24e018713ea2
fix bb bug #66: CCR air mode: should not blink for my bailout
heinrichsweikamp
parents:
498
diff
changeset
|
1196 bcf better_gas_available ; Yes, do not blink better gas |
24e018713ea2
fix bb bug #66: CCR air mode: should not blink for my bailout
heinrichsweikamp
parents:
498
diff
changeset
|
1197 |
612
ec2cfd4b748b
Blink better gas in bailout case (if CF42=1)
heinrichsweikamp
parents:
603
diff
changeset
|
1198 check_gas_change7: |
505
24e018713ea2
fix bb bug #66: CCR air mode: should not blink for my bailout
heinrichsweikamp
parents:
498
diff
changeset
|
1199 call PLED_active_gas_divemode; Display gas, if required (and with "*" if required...) |
8 | 1200 return |
1201 | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1202 ;============================================================================= |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1203 |
0 | 1204 calculate_noflytime: |
1205 ; calculate nofly time | |
1206 movff int_O_desaturation_time+0,xA+0 | |
1207 movff int_O_desaturation_time+1,xA+1 | |
251 | 1208 |
1209 btfsc xA+1,7 ; Is desat time negatif ? | |
1210 bra calculate_noflytime_3 ; Then surely not valid ! | |
1211 | |
0 | 1212 tstfsz xA+0 ; Desat=0? |
1213 bra calculate_noflytime2 | |
1214 tstfsz xA+1 ; Desat=0? | |
1215 bra calculate_noflytime2 | |
229
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1216 |
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1217 calculate_noflytime_3: |
0 | 1218 ; Desaturation time = zero |
229
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1219 clrf nofly_time+0 ; Clear nofly time |
0 | 1220 clrf nofly_time+1 ; Clear nofly time |
1221 bcf nofly_active ; Clear flag | |
1222 return | |
218 | 1223 |
0 | 1224 calculate_noflytime2: |
1225 movff xA+0,int_I_temp+0 | |
1226 movff xA+1,int_I_temp+1 | |
1227 GETCUSTOM8 .13 ; nofly_time_ratio | |
218 | 1228 movff WREG,char_I_temp |
0 | 1229 ostc_debug 'K' ; Sends debug-information to screen if debugmode active |
116 | 1230 call deco_calc_percentage |
0 | 1231 movlb b'00000001' ; select ram bank 1 |
1232 ostc_debug 'L' ; Sends debug-information to screen if debugmode active | |
1233 movff int_I_temp+0,xA+0 | |
1234 movff int_I_temp+1,xA+1 | |
1235 tstfsz xA+0 ; Desat=0? | |
1236 bra calculate_noflytime_2_final | |
1237 tstfsz xA+1 ; Desat=0? | |
1238 bra calculate_noflytime_2_final | |
229
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1239 bra calculate_noflytime_3 |
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1240 |
0 | 1241 calculate_noflytime_2_final: |
1242 movff xA+0,nofly_time+0 | |
1243 movff xA+1,nofly_time+1 | |
1244 bsf nofly_active ; Set flag | |
1245 return | |
1246 | |
1247 end_dive: | |
1248 btfss realdive ; dive longer then one minute | |
1249 goto end_dive_common ; No, discard everything | |
1250 | |
233 | 1251 ; In DEBUG compile, keep all simulated dives in logbook, Desat time, nofly, etc... |
1252 ifndef __DEBUG | |
1253 btfsc simulatormode_active ; Are we in simulator mode? | |
1254 goto end_dive_common ; Yes, discard everything | |
1255 endif | |
33 | 1256 |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
75
diff
changeset
|
1257 ; Dive finished (and longer then one minute or Apnoe timeout occured) |
0 | 1258 |
1259 btfsc FLAG_apnoe_mode ; Calc max. depth (again) for very short apnoe dives | |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
1260 call apnoe_calc_maxdepth |
0 | 1261 |
1262 ; calculate desaturation time | |
251 | 1263 movff last_surfpressure_30min+0,int_I_pres_surface+0 ; Pass surface to desat routine ! |
1264 movff last_surfpressure_30min+1,int_I_pres_surface+1 | |
0 | 1265 |
251 | 1266 GETCUSTOM8 d'12' ; Desaturation multiplier % |
229
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1267 movff WREG,char_I_desaturation_multiplier |
0 | 1268 |
1269 ostc_debug 'G' ; Sends debug-information to screen if debugmode active | |
251 | 1270 call deco_calc_desaturation_time ; calculate desaturation time |
229
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1271 movlb b'00000001' ; select ram bank 1 |
453
38b38b105782
compute desat based on 30min old surface pressure
heinrichsweikamp
parents:
447
diff
changeset
|
1272 call calc_deko_surfmode2 ; work-around for nofly bug |
229
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1273 rcall calculate_noflytime ; Calc NoFly time |
486
c7b663939737
making waitms speed-independent, desat-time fix
heinrichsweikamp
parents:
458
diff
changeset
|
1274 movff int_O_desaturation_time+0,desaturation_time_buffer+0 |
c7b663939737
making waitms speed-independent, desat-time fix
heinrichsweikamp
parents:
458
diff
changeset
|
1275 movff int_O_desaturation_time+1,desaturation_time_buffer+1 |
229
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1276 ostc_debug 'H' ; Sends debug-information to screen if debugmode active |
0 | 1277 ; store header and ... |
1278 movlw 0xFD ; .... End-of-Profile Bytes | |
1279 call write_external_eeprom | |
1280 movlw 0xFD | |
1281 call write_external_eeprom | |
1282 movlw 0xFE ; This positon will be overwritten for the next profile | |
229
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1283 call write_external_eeprom ; and is required to find the newest dive after a firmware reset |
0 | 1284 |
1285 movff eeprom_header_address+0, eeprom_address+0 ; set header adress | |
1286 movff eeprom_header_address+1, eeprom_address+1 ; write header | |
1287 | |
1288 movlw 0xFA ; Header start | |
1289 call write_external_eeprom | |
1290 movlw 0xFA | |
1291 call write_external_eeprom | |
349
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
344
diff
changeset
|
1292 movlw logbook_profile_version ; Defined in definitions.asm |
0 | 1293 call write_external_eeprom |
229
85ea09d3b9d8
Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents:
228
diff
changeset
|
1294 movf month,W ; Date |
0 | 1295 call write_external_eeprom |
1296 movf day,W | |
1297 call write_external_eeprom | |
1298 movf year,W | |
1299 call write_external_eeprom | |
1300 movf hours,W ; End of dive time | |
1301 call write_external_eeprom | |
1302 movf mins,W | |
1303 call write_external_eeprom | |
1304 | |
1305 btfss FLAG_apnoe_mode ; Store apnoe max or normal max (Which is only max from the last descent) | |
1306 bra end_dive1 ; Store normal depth | |
1307 | |
1308 movff apnoe_max_pressure+0,lo | |
1309 movff apnoe_max_pressure+1,hi | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
386
diff
changeset
|
1310 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
0 | 1311 movff lo,apnoe_max_pressure+0 |
1312 movff hi,apnoe_max_pressure+1 | |
1313 | |
1314 movf apnoe_max_pressure+0,W ; Max. depth | |
1315 call write_external_eeprom | |
1316 movf apnoe_max_pressure+1,W | |
1317 call write_external_eeprom | |
1318 bra end_dive2 ; skip | |
1319 | |
1320 end_dive1: | |
1321 movff max_pressure+0,lo | |
1322 movff max_pressure+1,hi | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
386
diff
changeset
|
1323 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
0 | 1324 movff lo,max_pressure+0 |
1325 movff hi,max_pressure+1 | |
1326 | |
1327 movf max_pressure+0,W ; Max. depth | |
1328 call write_external_eeprom | |
1329 movf max_pressure+1,W | |
1330 call write_external_eeprom | |
1331 | |
1332 end_dive2: | |
1333 movf divemins+0,W ; divetime minutes | |
1334 call write_external_eeprom | |
1335 movf divemins+1,W | |
1336 call write_external_eeprom | |
1337 movf divesecs,W ; divetime seconds | |
1338 call write_external_eeprom | |
1339 movf mintemp+0,W ; minimum temperature | |
1340 call write_external_eeprom | |
1341 movf mintemp+1,W | |
1342 call write_external_eeprom | |
1343 movf last_surfpressure_30min+0,W ; airpressure before dive | |
1344 call write_external_eeprom | |
1345 movf last_surfpressure_30min+1,W | |
1346 call write_external_eeprom | |
1347 movff int_O_desaturation_time+0,lo ; | |
1348 movff int_O_desaturation_time+1,hi | |
1349 movf lo,W ; desaturation time in minutes | |
1350 call write_external_eeprom | |
1351 movf hi,W ; | |
1352 call write_external_eeprom | |
1353 | |
1354 ; Gases.... | |
1355 read_int_eeprom d'6' ; Read byte (stored in EEDATA) | |
1356 movf EEDATA,W | |
1357 call write_external_eeprom | |
1358 read_int_eeprom d'7' ; Read byte (stored in EEDATA) | |
1359 movf EEDATA,W | |
1360 call write_external_eeprom | |
1361 | |
1362 read_int_eeprom d'10' ; Read byte (stored in EEDATA) | |
1363 movf EEDATA,W | |
1364 call write_external_eeprom | |
1365 read_int_eeprom d'11' ; Read byte (stored in EEDATA) | |
1366 movf EEDATA,W | |
1367 call write_external_eeprom | |
1368 | |
1369 read_int_eeprom d'14' ; Read byte (stored in EEDATA) | |
1370 movf EEDATA,W | |
1371 call write_external_eeprom | |
1372 read_int_eeprom d'15' ; Read byte (stored in EEDATA) | |
1373 movf EEDATA,W | |
1374 call write_external_eeprom | |
1375 | |
1376 read_int_eeprom d'18' ; Read byte (stored in EEDATA) | |
1377 movf EEDATA,W | |
1378 call write_external_eeprom | |
1379 read_int_eeprom d'19' ; Read byte (stored in EEDATA) | |
1380 movf EEDATA,W | |
1381 call write_external_eeprom | |
1382 | |
1383 read_int_eeprom d'22' ; Read byte (stored in EEDATA) | |
1384 movf EEDATA,W | |
1385 call write_external_eeprom | |
1386 read_int_eeprom d'23' ; Read byte (stored in EEDATA) | |
1387 movf EEDATA,W | |
1388 call write_external_eeprom | |
1389 | |
1390 read_int_eeprom d'24' ; % O2 Gas6 | |
1391 movf EEDATA,W | |
1392 call write_external_eeprom | |
1393 read_int_eeprom d'25' ; % He Gas6 | |
1394 movf EEDATA,W | |
1395 call write_external_eeprom | |
1396 read_int_eeprom d'33' ; start gas | |
1397 movf EEDATA,W | |
1398 call write_external_eeprom | |
1399 | |
1400 movlw softwareversion_x ; Firmware version | |
1401 call write_external_eeprom | |
1402 movlw softwareversion_y | |
1403 call write_external_eeprom | |
1404 movf batt_voltage+0,W ; Battery voltage | |
1405 call write_external_eeprom | |
1406 movf batt_voltage+1,W | |
1407 call write_external_eeprom | |
1408 | |
1409 GETCUSTOM8 d'20' ; sampling rate in WREG | |
1410 btfsc FLAG_apnoe_mode ; Apnoe mode? | |
1411 movlw d'1' ; Apnoe sampling rate | |
1412 call write_external_eeprom | |
1413 | |
1414 movlw d'2' ; information size temperature | |
1415 movwf temp1 ; copy to bits 0-3 | |
1416 swapf temp1,F ; swap nibbels 0-3 with 4-7 | |
1417 GETCUSTOM8 d'21' ; Divisor temperature | |
1418 addwf temp1,W ; copy to bits 0-3, result in WREG | |
1419 call write_external_eeprom | |
1420 | |
1421 movlw d'2' ; information size deco | |
1422 movwf temp1 ; copy to bits 0-3 | |
1423 swapf temp1,F ; swap nibbels 0-3 with 4-7 | |
1424 GETCUSTOM8 d'22' ; Divisor deco | |
458 | 1425 btfsc FLAG_apnoe_mode ; in Apnoe mode? |
1426 movlw d'0' ; Yes, set to zero | |
0 | 1427 addwf temp1,W ; copy to bits 0-3, result in WREG |
1428 call write_external_eeprom | |
1429 | |
376
ed26990716fe
first gas does not reset change depth, display fix with multigas dives in logbook
heinrichsweikamp
parents:
375
diff
changeset
|
1430 movlw d'1' ; information size GF |
0 | 1431 movwf temp1 ; copy to bits 0-3 |
1432 swapf temp1,F ; swap nibbels 0-3 with 4-7 | |
376
ed26990716fe
first gas does not reset change depth, display fix with multigas dives in logbook
heinrichsweikamp
parents:
375
diff
changeset
|
1433 GETCUSTOM8 d'23' ; Divisor GF |
0 | 1434 addwf temp1,W ; copy to bits 0-3, result in WREG |
1435 call write_external_eeprom | |
1436 | |
1437 movlw d'3' ; information size pp02 | |
1438 movwf temp1 ; copy to bits 0-3 | |
1439 swapf temp1,F ; swap nibbels 0-3 with 4-7 | |
1440 GETCUSTOM8 d'24' ; Divisor pp02 | |
1441 addwf temp1,W ; copy to bits 0-3, result in WREG | |
1442 call write_external_eeprom | |
1443 | |
532 | 1444 movlw d'0' ; information size Decodebug |
0 | 1445 movwf temp1 ; copy to bits 0-3 |
1446 swapf temp1,F ; swap nibbels 0-3 with 4-7 | |
1447 GETCUSTOM8 d'25' ; Divisor Decodebug | |
1448 addwf temp1,W ; copy to bits 0-3, result in WREG | |
1449 call write_external_eeprom | |
1450 | |
367 | 1451 movlw d'1' ; information size cns |
0 | 1452 movwf temp1 ; copy to bits 0-3 |
1453 swapf temp1,F ; swap nibbels 0-3 with 4-7 | |
367 | 1454 GETCUSTOM8 d'26' ; Divisor cns |
0 | 1455 addwf temp1,W ; copy to bits 0-3, result in WREG |
1456 call write_external_eeprom | |
1457 | |
1458 read_int_eeprom d'26' ; Read Salinity from EEPROM | |
1459 movf EEDATA,W | |
1460 call write_external_eeprom ; Store Salinity to Dive | |
253
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
251
diff
changeset
|
1461 |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
251
diff
changeset
|
1462 movff char_O_CNS_fraction,WREG ; copy into bank1 |
3a4096f32526
show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents:
251
diff
changeset
|
1463 call write_external_eeprom ; Stores CNS% |
0 | 1464 |
351
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
349
diff
changeset
|
1465 movff avr_rel_pressure_total+0,WREG ; Average Depth |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
349
diff
changeset
|
1466 call write_external_eeprom |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
349
diff
changeset
|
1467 movff avr_rel_pressure_total+1,WREG ; Average Depth |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
349
diff
changeset
|
1468 call write_external_eeprom |
357
562f1bc79f3c
Bugfix: Wake-up into divemode with 1.91alpha
Heinrichsweikamp
parents:
352
diff
changeset
|
1469 |
562f1bc79f3c
Bugfix: Wake-up into divemode with 1.91alpha
Heinrichsweikamp
parents:
352
diff
changeset
|
1470 movff total_divetime_seconds+0,WREG ; Total dive time (Regardless of CF01) |
562f1bc79f3c
Bugfix: Wake-up into divemode with 1.91alpha
Heinrichsweikamp
parents:
352
diff
changeset
|
1471 call write_external_eeprom |
562f1bc79f3c
Bugfix: Wake-up into divemode with 1.91alpha
Heinrichsweikamp
parents:
352
diff
changeset
|
1472 movff total_divetime_seconds+1,WREG ; Total dive time (Regardless of CF01) |
562f1bc79f3c
Bugfix: Wake-up into divemode with 1.91alpha
Heinrichsweikamp
parents:
352
diff
changeset
|
1473 call write_external_eeprom |
562f1bc79f3c
Bugfix: Wake-up into divemode with 1.91alpha
Heinrichsweikamp
parents:
352
diff
changeset
|
1474 |
375 | 1475 movlw d'32' ; GF_lo |
374 | 1476 movff char_I_deco_model,lo |
1477 decfsz lo,F ; jump over next line if char_I_deco_model == 1 | |
375 | 1478 movlw d'11' ; Saturation Multiplier |
1479 call getcustom8_1 ; Get Custom function #WREG | |
374 | 1480 call write_external_eeprom ; write WREG into external memory |
375 | 1481 |
1482 movlw d'33' ; GF_hi | |
374 | 1483 movff char_I_deco_model,lo |
1484 decfsz lo,F ; jump over next line if char_I_deco_model == 1 | |
375 | 1485 movlw d'12' ; Desaturation Multiplier |
1486 call getcustom8_1 ; Get Custom function #WREG | |
374 | 1487 call write_external_eeprom ; write WREG into external memory |
375 | 1488 |
373
8781d1cf96d8
added GF_hi, GF_lo and deco model to dive header
Heinrichsweikamp
parents:
367
diff
changeset
|
1489 read_int_eeprom d'34' ; Read deco modell |
8781d1cf96d8
added GF_hi, GF_lo and deco model to dive header
Heinrichsweikamp
parents:
367
diff
changeset
|
1490 movf EEDATA,W |
374 | 1491 call write_external_eeprom ; write WREG into external memory |
373
8781d1cf96d8
added GF_hi, GF_lo and deco model to dive header
Heinrichsweikamp
parents:
367
diff
changeset
|
1492 |
351
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
349
diff
changeset
|
1493 clrf WREG |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
349
diff
changeset
|
1494 call write_external_eeprom ; Spare3 |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
349
diff
changeset
|
1495 clrf WREG |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
349
diff
changeset
|
1496 call write_external_eeprom ; Spare2 |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
349
diff
changeset
|
1497 clrf WREG |
5c186a72cb5d
Debugging the new logbook format, 64kB download routine
heinrichsweikamp
parents:
349
diff
changeset
|
1498 call write_external_eeprom ; Spare1 |
349
ed137d66ac65
Preparations for new "0x21" logbook format
heinrichsweikamp
parents:
344
diff
changeset
|
1499 |
0 | 1500 movlw 0xFB ; Header stop |
1501 call write_external_eeprom | |
1502 movlw 0xFB | |
1503 call write_external_eeprom | |
1504 | |
1505 ; Increase total dive counter | |
1506 read_int_eeprom d'2' ; Read byte (stored in EEDATA) | |
1507 movff EEDATA,temp1 ; Low byte | |
1508 read_int_eeprom d'3' ; Read byte (stored in EEDATA) | |
1509 movff EEDATA,temp2 ; high byte | |
1510 bcf STATUS,C | |
1511 movlw d'1' | |
1512 addwf temp1 | |
1513 movlw d'0' | |
1514 addwfc temp2 | |
1515 movff temp1,EEDATA | |
1516 write_int_eeprom d'2' ; write byte stored in EEDATA | |
1517 movff temp2,EEDATA | |
1518 write_int_eeprom d'3' ; write byte stored in EEDATA | |
1519 | |
626
bab5a9fc1b10
restore last used customview in dive- and surface-mode
heinrichsweikamp
parents:
623
diff
changeset
|
1520 ; Save dive mode custom view |
bab5a9fc1b10
restore last used customview in dive- and surface-mode
heinrichsweikamp
parents:
623
diff
changeset
|
1521 movff menupos3,EEDATA ; Copy to EEDATA |
bab5a9fc1b10
restore last used customview in dive- and surface-mode
heinrichsweikamp
parents:
623
diff
changeset
|
1522 write_int_eeprom d'94' ; Write last selected customview dive mode into EEPROM |
bab5a9fc1b10
restore last used customview in dive- and surface-mode
heinrichsweikamp
parents:
623
diff
changeset
|
1523 |
0 | 1524 GETCUSTOM15 .28 ; Logbook Offset -> lo, hi |
1525 tstfsz lo ; lo=0? | |
1526 bra change_logbook_offset1 ; No, adjust offset | |
1527 tstfsz hi ; hi=0? | |
1528 bra change_logbook_offset1 ; No, adjust offset | |
1529 bra change_logbook_offset2 ; lo=0 and hi=0 -> skip Offset routine | |
1530 change_logbook_offset1: | |
1531 movlw d'1' | |
1532 addwf lo | |
1533 movlw d'0' | |
1534 addwfc hi | |
1535 movlw d'112' ; CF28 *4 Bytes... | |
1536 addlw 0x82 | |
1537 movwf EEADR | |
1538 movff lo,EEDATA | |
1539 call write_eeprom ; Lowbyte | |
1540 movlw d'112' ; CF28 *4 Bytes... | |
1541 addlw 0x83 | |
1542 movwf EEADR | |
1543 movff hi,EEDATA | |
1544 call write_eeprom ; Highbyte | |
1545 | |
1546 change_logbook_offset2: | |
25 | 1547 bcf LED_blue |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1548 clrf surface_interval+0 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1549 clrf surface_interval+1 ; Clear surface interval timer |
33 | 1550 |
1551 end_dive_common: | |
0 | 1552 bcf simulatormode_active ; if we were in simulator mode |
1553 | |
407 | 1554 ; In DEBUG compile, keep all simulated dives in logbook, Desat time, nofly, etc... |
1555 ifndef __DEBUG | |
1556 btfsc restore_deco_data ; Restore decodata? | |
1557 call simulator_restore_tissue_data ; Yes! | |
1558 endif | |
0 | 1559 |
1560 goto surfloop ; and return to surfaceloop | |
1561 | |
1562 timeout_divemode: | |
1563 btfss realdive ; Dive longer then one minute | |
1564 return | |
1565 | |
1566 btfsc FLAG_apnoe_mode ; In Apnoe mode? | |
1567 bra timeout_divemode2 ; Yes, use CF30 [min] for timeout | |
1568 | |
233 | 1569 ifndef __DEBUG |
1570 btfsc simulatormode_active ; In Simulator mode? | |
1571 bra timeout_divemode3 ; Yes, use fixed 5 seconds timeout | |
1572 endif | |
0 | 1573 |
1574 bcf divemode | |
1575 incf timeout_counter,F | |
352
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1576 movlw d'0' |
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1577 addwfc timeout_counter2,F ; timeout is 15bits |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1578 |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1579 GETCUSTOM15 d'2' ; diveloop_timeout -> lo:hi |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1580 |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1581 btfss dekostop_active ; Is a deco stop displayed? |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1582 bra timeout_divemode1 ; No, use normal CF02 timeout |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1583 |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1584 ; Yes, use 10minutes counter |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1585 movlw LOW .600 |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1586 movwf lo |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1587 movlw HIGH .600 |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1588 movwf hi |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1589 |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1590 timeout_divemode1: |
352
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1591 movff lo,sub_a+0 |
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1592 movff hi,sub_a+1 |
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1593 movff timeout_counter, sub_b+0 |
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1594 movff timeout_counter2, sub_b+1 |
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1595 call sub16 ; sub_c = sub_a - sub_b |
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1596 btfss neg_flag ; Result negative? |
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1597 bsf divemode ; No, set flag |
0 | 1598 return |
1599 | |
1600 timeout_divemode2: | |
1601 incf timeout_counter,F ; seconds... | |
1602 movlw d'60' | |
1603 cpfseq timeout_counter ; timeout_counter=60? | |
1604 return ; No. | |
1605 | |
1606 clrf timeout_counter | |
1607 bcf divemode | |
1608 incf apnoe_timeout_counter,F | |
1609 GETCUSTOM8 d'30' ; apnoe timeout [min] | |
1610 cpfseq apnoe_timeout_counter | |
1611 bsf divemode | |
1612 return | |
1613 | |
1614 timeout_divemode3: | |
1615 bcf divemode | |
1616 incf timeout_counter,F | |
1617 movlw d'5' ; Fixed timeout of 5 seconds | |
1618 cpfsgt timeout_counter | |
1619 bsf divemode | |
1620 return | |
1621 | |
1622 update_divemode1: ; update any second | |
1623 call set_dive_modes ; tests if depth>threshold | |
1624 | |
1625 btfsc divemode | |
1626 call set_max_depth ; update max. depth if required | |
1627 | |
1628 btfsc divemode | |
1629 call set_min_temp ; store min. temp if required | |
1630 | |
342
06299199dfb9
Fix bad max depth value (fix sub16 to avoid trashing sub_b).
JeanDo
parents:
341
diff
changeset
|
1631 bcf temp_changed ; Display temperature? |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1632 SAFE_2BYTE_COPY temperature,lo |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1633 movf lo,W |
0 | 1634 cpfseq last_temperature+0 |
342
06299199dfb9
Fix bad max depth value (fix sub16 to avoid trashing sub_b).
JeanDo
parents:
341
diff
changeset
|
1635 bsf temp_changed ; Yes |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1636 movf hi,W |
0 | 1637 cpfseq last_temperature+1 |
342
06299199dfb9
Fix bad max depth value (fix sub16 to avoid trashing sub_b).
JeanDo
parents:
341
diff
changeset
|
1638 bsf temp_changed ; Yes |
0 | 1639 btfsc temp_changed |
342
06299199dfb9
Fix bad max depth value (fix sub16 to avoid trashing sub_b).
JeanDo
parents:
341
diff
changeset
|
1640 call PLED_temp_divemode ; Displays temperature |
0 | 1641 |
1642 bcf pres_changed ; Display new depth? | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1643 SAFE_2BYTE_COPY amb_pressure, lo |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1644 movf lo,W |
0 | 1645 cpfseq last_pressure+0 |
1646 bsf pres_changed ; Yes | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1647 movf hi,W |
0 | 1648 cpfseq last_pressure+1 |
1649 bsf pres_changed ; Yes | |
1650 | |
1651 btfsc simulatormode_active ; always update depth when in simulator mode | |
1652 bsf pres_changed | |
1653 | |
1654 btfsc pres_changed | |
1655 call PLED_depth ; Displays new depth | |
1656 return | |
1657 | |
1658 update_divemode60: ; update any minute | |
1659 call get_battery_voltage ; gets battery voltage | |
1660 call set_powersafe ; red LED blinking if battery is low | |
1661 call PLED_max_pressure ; No, use normal max. depth | |
1662 call check_temp_extrema ; check for new temperature extremas | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
83
diff
changeset
|
1663 call customview_minute ; Do every-minute tasks for the custom view area |
0 | 1664 bcf oneminupdate |
1665 return | |
1666 | |
1667 set_max_depth: | |
1668 movff max_pressure+0,sub_a+0 | |
1669 movff max_pressure+1,sub_a+1 | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1670 SAFE_2BYTE_COPY rel_pressure, sub_b |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1671 call sub16 ; sub_c = sub_a - sub_b |
0 | 1672 ; max_pressure<rel_pressure -> neg_flag=1 |
1673 ; rel_pressure<=max_pressure -> neg_flag=0 | |
1674 btfss neg_flag | |
1675 return | |
1676 ;max_pressure<rel_pressure | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1677 movff sub_b+0,max_pressure+0 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1678 movff sub_b+1,max_pressure+1 |
0 | 1679 call PLED_max_pressure ; No, use normal max. depth |
1680 return | |
1681 | |
1682 set_min_temp: | |
1683 movff mintemp+0,sub_a+0 | |
1684 movff mintemp+1,sub_a+1 | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1685 SAFE_2BYTE_COPY temperature,sub_b |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1686 call sub16 ; sub_c = sub_a - sub_b |
0 | 1687 ; mintemp<T -> neg_flag=1 |
1688 ; T<=mintemp -> neg_flag=0 | |
1689 btfsc neg_flag | |
1690 return | |
1691 ;mintemp>=T | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1692 movff sub_b+0,mintemp+0 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1693 movff sub_b+1,mintemp+1 |
0 | 1694 return |
1695 | |
1696 set_dive_modes: | |
239 | 1697 btfsc high_altitude_mode ; In high altitude (Fly) mode? |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1698 bra set_dive_modes3 ; Yes! |
239 | 1699 |
615 | 1700 btfss divemode ; In divemode? |
1701 bra set_dive_modes0 ; No. | |
1702 | |
1703 ; in Divemode, check threshold from CF01 | |
1704 GETCUSTOM8 .1 ; loads dive_threshold in WREG | |
1705 movwf sub_a+0 ; dive_treshold is in cm | |
1706 clrf sub_a+1 | |
1707 bra set_dive_modes1 ; Done. | |
1708 | |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1709 set_dive_modes0: |
0 | 1710 GETCUSTOM8 .0 ; loads dive_threshold in WREG |
1711 movwf sub_a+0 ; dive_treshold is in cm | |
1712 clrf sub_a+1 | |
615 | 1713 bra set_dive_modes1 ; Done. |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1714 |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1715 set_dive_modes1: |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1716 SAFE_2BYTE_COPY rel_pressure, sub_b |
239 | 1717 call sub16 ; sub_c = sub_a - sub_b |
342
06299199dfb9
Fix bad max depth value (fix sub16 to avoid trashing sub_b).
JeanDo
parents:
341
diff
changeset
|
1718 |
0 | 1719 btfss neg_flag |
239 | 1720 bra set_dive_modes2 ; too shallow (rel_pressure<dive_threshold) |
0 | 1721 |
239 | 1722 btfsc realdive ; Dive longer than one minute? |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1723 clrf timeout_counter ; Yes, reset timout counter (Low Byte) |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1724 btfsc realdive ; Dive longer than one minute? |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1725 clrf timeout_counter2 ; Yes, reset timout counter (High Byte) |
0 | 1726 |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
407
diff
changeset
|
1727 set_dive_modes_common: |
239 | 1728 bsf divemode ; (Re-)Set divemode flag |
0 | 1729 bsf divemode2 ; displayed divetime is running |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
407
diff
changeset
|
1730 btfsc timeout_display ; Was the timeout displayed? |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
407
diff
changeset
|
1731 call PLED_divemode_timeout_clear ; Yes, Clear (once) |
0 | 1732 return |
1733 | |
1734 set_dive_modes2: | |
407 | 1735 bcf divemode2 ; Stop time |
1736 btfss realdive ; dive longer then one minute? | |
1737 bcf divemode ; no -> this was no real dive | |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
407
diff
changeset
|
1738 |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
407
diff
changeset
|
1739 btfss divemode ; Are we still diving? |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
407
diff
changeset
|
1740 return ; No, return |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1741 ; Yes, show divemode timeout |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
407
diff
changeset
|
1742 |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1743 btfsc menubit ; Divemode menu active? |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1744 return ; Yes, return |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1745 btfsc FLAG_apnoe_mode ; In Apnoe mode? |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1746 return ; Yes, return |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1747 btfsc gauge_mode ; In Gauge mode? |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1748 return ; Yes, return |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1749 |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1750 |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
407
diff
changeset
|
1751 btfss dekostop_active ; Is a deco stop displayed? |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
407
diff
changeset
|
1752 call PLED_divemode_timeout ; No, show the divemode timeout here... |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1753 btfsc dekostop_active ; Is a deco stop displayed? |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
550
diff
changeset
|
1754 call PLED_divemode_timeout2 ; Yes, show red warning divemode counter |
0 | 1755 return |
1756 | |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1757 set_dive_modes3: ; High-altitude mode |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1758 btfsc realdive ; dive longer then one minute? |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1759 bra set_dive_modes0 ; Yes -> this is a real dive -> Use CF00 threshold for ascend |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1760 |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1761 movlw HIGH d'300' ; hard-wired 300cm threshold |
239 | 1762 movwf sub_a+1 |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1763 movlw LOW d'300' ; hard-wired 300cm threshold |
239 | 1764 movwf sub_a+0 |
415
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1765 bra set_dive_modes1 |
d022c62a1df5
fixing issue with end-of-dive threshold in high-altitude mode
heinrichsweikamp
parents:
413
diff
changeset
|
1766 |
0 | 1767 set_powersafe: |
1768 btfsc low_battery_state ; battery warning alread active? | |
1769 bra set_powersafe2 ; Yes, but is it still required? | |
1770 ; battery voltage in mV (value*256+Lowbyte=actual treshold) | |
1771 movlw d'12' ; 3,328V | |
1772 cpfsgt batt_voltage+1 | |
1773 bra set_powersafe1 | |
1774 return | |
1775 | |
1776 set_powersafe1: | |
1777 movlw d'7' ; Type of Alarm (Battery Low) | |
1778 movwf AlarmType ; Copy to Alarm Register | |
1779 bsf event_occured ; Set Event Flag | |
1780 bsf low_battery_state ; set flag for battery warning | |
1781 return ; return | |
1782 | |
1783 set_powersafe2: | |
1784 movlw d'13' ; 3,584V | |
1785 cpfsgt batt_voltage+1 | |
1786 bra set_powersafe1 ; Still to low | |
1787 bcf low_battery_state ; clear flag for battery warning mode | |
1788 return | |
1789 | |
1790 calc_average_depth: | |
111 | 1791 btfsc reset_average_depth ; Reset the Avewrage depth? |
1792 rcall reset_average1 ; Reset the resettable average depth | |
1793 | |
0 | 1794 ; 1. Add new 2xdepth to the Sum of depths registers |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1795 SAFE_2BYTE_COPY rel_pressure, b0_lo ; Buffer... |
0 | 1796 |
1797 movf b0_lo,w | |
1798 addwf average_depth_hold+0,F | |
1799 movf b0_hi,w | |
1800 addwfc average_depth_hold+1,F | |
1801 movlw d'0' | |
1802 addwfc average_depth_hold+2,F | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
386
diff
changeset
|
1803 addwfc average_depth_hold+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar |
0 | 1804 |
1805 movf b0_lo,w | |
1806 addwf average_depth_hold+0,F | |
1807 movf b0_hi,w | |
1808 addwfc average_depth_hold+1,F | |
1809 movlw d'0' | |
1810 addwfc average_depth_hold+2,F | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
386
diff
changeset
|
1811 addwfc average_depth_hold+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar |
0 | 1812 |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1813 ; Do the same for the _total registers (Non-Resettable) |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1814 movf b0_lo,w |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1815 addwf average_depth_hold_total+0,F |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1816 movf b0_hi,w |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1817 addwfc average_depth_hold_total+1,F |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1818 movlw d'0' |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1819 addwfc average_depth_hold_total+2,F |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
386
diff
changeset
|
1820 addwfc average_depth_hold_total+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1821 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1822 movf b0_lo,w |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1823 addwf average_depth_hold_total+0,F |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1824 movf b0_hi,w |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1825 addwfc average_depth_hold_total+1,F |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1826 movlw d'0' |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1827 addwfc average_depth_hold_total+2,F |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
386
diff
changeset
|
1828 addwfc average_depth_hold_total+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1829 |
0 | 1830 ; 2. Compute Average Depth on base of average_divesecs:2 |
1831 movff average_divesecs+0,xB+0 | |
1832 movff average_divesecs+1,xB+1 ; Copy | |
1833 movff average_depth_hold+0,xC+0 | |
1834 movff average_depth_hold+1,xC+1 | |
1835 movff average_depth_hold+2,xC+2 | |
1836 movff average_depth_hold+3,xC+3 | |
1837 | |
1838 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
1839 movff xC+0,avr_rel_pressure+0 | |
1840 movff xC+1,avr_rel_pressure+1 | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1841 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1842 ; Compute Total Average Depth on base of divemins:2 and divesecs |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1843 movff divemins+0,xA+0 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1844 movff divemins+1,xA+1 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1845 movlw d'60' |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1846 movwf xB+0 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1847 clrf xB+1 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1848 call mult16x16 ; xC:4=xA:2*xB:2 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1849 movf divesecs,W |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1850 addwf xC+0,F |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1851 movlw d'0' |
228 | 1852 addwfc xC+1,F ; xC:2 holds total dive seconds |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1853 movlw d'3' ; 2+1 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1854 btfss divesecs,0 ; divesecs even? |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1855 movlw d'2' ; Yes, do not add +1 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1856 addwf xC+0,F |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1857 movlw d'0' |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1858 addwfc xC+1,F |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1859 ; Ignore xC+2 and xC+3. Total Average will only work up to divetime=1092:16 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1860 movff xC+0,xB+0 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1861 movff xC+1,xB+1 ; Copy |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1862 movff average_depth_hold_total+0,xC+0 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1863 movff average_depth_hold_total+1,xC+1 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1864 movff average_depth_hold_total+2,xC+2 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1865 movff average_depth_hold_total+3,xC+3 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1866 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1867 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1868 movff xC+0,avr_rel_pressure_total+0 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1869 movff xC+1,avr_rel_pressure_total+1 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1870 |
0 | 1871 return |
1872 | |
111 | 1873 reset_average1: |
1874 clrf average_depth_hold+0 | |
1875 clrf average_depth_hold+1 | |
1876 clrf average_depth_hold+2 | |
1877 clrf average_depth_hold+3 ; Clear average depth register | |
1878 movlw d'2' | |
1879 movwf average_divesecs+0 | |
1880 clrf average_divesecs+1 | |
1881 bcf reset_average_depth ; Clear flag | |
1882 return | |
0 | 1883 |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1884 ;============================================================================= |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1885 ; Setup everything to enter divemode. |
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
1886 ; |
0 | 1887 diveloop_boot: |
49 | 1888 ostc_debug 'Q' ; Sends debug-information to screen if debugmode active |
0 | 1889 clrf max_pressure+0 ; clear some variables |
1890 clrf max_pressure+1 | |
1891 clrf avr_rel_pressure+0 | |
1892 clrf avr_rel_pressure+1 | |
1893 | |
1894 movlw d'1' | |
1895 movwf apnoe_max_pressure+0 | |
1896 clrf apnoe_max_pressure+1 | |
1897 clrf apnoe_surface_mins | |
1898 clrf apnoe_surface_secs | |
1899 clrf apnoe_mins | |
1900 clrf apnoe_secs | |
1901 clrf divemins+0 | |
1902 clrf divemins+1 | |
357
562f1bc79f3c
Bugfix: Wake-up into divemode with 1.91alpha
Heinrichsweikamp
parents:
352
diff
changeset
|
1903 clrf total_divetime_seconds+0 |
562f1bc79f3c
Bugfix: Wake-up into divemode with 1.91alpha
Heinrichsweikamp
parents:
352
diff
changeset
|
1904 clrf total_divetime_seconds+1 |
407 | 1905 bsf divemode2 ; displayed divetime is running (Divetime starts HERE) |
1906 | |
1907 clrf EEADRH ; Make sure to select eeprom bank 0 | |
1908 call PLED_brightness_low | |
1909 read_int_eeprom d'90' ; Brightness offset? (Dim>0, Normal = 0) | |
1910 movlw d'0' | |
1911 cpfsgt EEDATA | |
1912 call PLED_brightness_full | |
1913 | |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
407
diff
changeset
|
1914 bcf timeout_display |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
83
diff
changeset
|
1915 bcf menu3_active |
0 | 1916 clrf divesecs |
1917 clrf samplesecs | |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
626
diff
changeset
|
1918 clrf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available |
0 | 1919 clrf apnoe_timeout_counter ; timeout in minutes |
352
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1920 clrf timeout_counter ; takes care of the timeout (Low byte) |
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
351
diff
changeset
|
1921 clrf timeout_counter2 ; takes care of the timeout (High byte) |
0 | 1922 clrf AlarmType ; Clear all alarms |
1923 bcf event_occured ; clear flag | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
263
diff
changeset
|
1924 bcf setpoint_changed ; clear flag |
111 | 1925 rcall reset_average1 ; Reset the resettable average depth |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1926 clrf average_depth_hold_total+0 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1927 clrf average_depth_hold_total+1 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1928 clrf average_depth_hold_total+2 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
124
diff
changeset
|
1929 clrf average_depth_hold_total+3 ; Clear Non-Resettable Average |
517 | 1930 bcf depth_greater_100m ; clear flag |
577 | 1931 ; setf last_diluent ; to be displayed after first calculation (range: 0 to 100 [%]) |
3 | 1932 bcf dekostop_active |
1933 bcf is_bailout ;=1: CC mode, but bailout active! | |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
1934 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
1935 bcf tts_extra_time ;=1: Compute TTS if extra time spent at current depth |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
1936 bcf show_safety_stop ;=1: Show the safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
595
diff
changeset
|
1937 clrf safety_stop_countdown ; Clear count-down |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
311
diff
changeset
|
1938 |
0 | 1939 call get_free_EEPROM_location ; get last position in external EEPROM, may be up to 2 secs! |
1940 | |
319 | 1941 btfsc simulatormode_active |
237 | 1942 bra diveloop_boot_1 |
1943 ; Normal mode = Surface pressure is the pressure 30mn before dive. | |
0 | 1944 movff last_surfpressure_30min+0,int_I_pres_surface+0 ; LOW copy surfacepressure to deco routine |
237 | 1945 movff last_surfpressure_30min+1,int_I_pres_surface+1 ; HIGH copy surfacepressure to deco routine |
1946 bra diveloop_boot_2 | |
1947 | |
1948 diveloop_boot_1: | |
1949 ; Simulator mode: Surface pressure is 1bar. | |
1950 movlw LOW .1000 | |
1951 movff WREG,int_I_pres_surface+0 ; LOW copy surfacepressure to deco routine | |
1952 movlw HIGH .1000 | |
1953 movff WREG,int_I_pres_surface+1 ; HIGH copy surfacepressure to deco routine | |
1954 | |
1955 diveloop_boot_2: | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
323
diff
changeset
|
1956 SAFE_2BYTE_COPY temperature,mintemp ; Reset Min-Temp registers |
0 | 1957 |
1958 ; Init profile recording parameters | |
237 | 1959 GETCUSTOM8 d'20' ; sample rate |
1960 movwf samplesecs_value ; to avoid EEPROM access in the ISR | |
0 | 1961 GETCUSTOM8 d'21' |
237 | 1962 movwf divisor_temperature ; load divisors for profile storage |
0 | 1963 GETCUSTOM8 d'22' |
457 | 1964 btfsc FLAG_apnoe_mode ; in Apnoe mode? |
1965 movlw d'0' ; Yes, set to zero | |
0 | 1966 movwf divisor_deco |
1967 GETCUSTOM8 d'23' | |
374 | 1968 movwf divisor_gf |
0 | 1969 GETCUSTOM8 d'24' |
1970 movwf divisor_ppo2 | |
1971 GETCUSTOM8 d'25' | |
1972 movwf divisor_deco_debug | |
1973 GETCUSTOM8 d'26' | |
367 | 1974 movwf divisor_cns |
0 | 1975 |
1976 btfss FLAG_apnoe_mode ; In Apnoe mode? | |
1977 bra divemode1 | |
1978 ; Overwrite some parameters in Apnoe mode.... | |
1979 movlw d'1' | |
1980 movwf samplesecs_value ; to avoid EEPROM access in the ISR | |
1981 | |
1982 divemode1: | |
1983 read_int_eeprom d'36' ; Read mix 1 ppO2 | |
1984 btfsc FLAG_const_ppO2_mode | |
292 | 1985 movff EEDATA,char_I_const_ppO2 ; Set ppO2 setpoint if in ppO2 mode |
1986 movff EEDATA,ppO2_setpoint_store ; Store also in this byte... | |
0 | 1987 |
21 | 1988 bcf LED_blue |
0 | 1989 bcf low_battery_state ; clear flag for battery warning mode |
1990 bcf header_stored | |
1991 bcf premenu | |
1992 bcf realdive | |
1993 bsf update_divetime ; set flag | |
1994 btfss simulatormode_active ; do not disable in simulator mode! | |
49 | 1995 call disable_rs232 ; Disable RS232 |
0 | 1996 |
292 | 1997 ; Read Start Gas and configure char_I_He_ratio, char_I_O2_ratio and char_I_N2_ratio |
1998 set_first_gas: | |
0 | 1999 read_int_eeprom d'33' ; Read byte (stored in EEDATA) |
2000 movff EEDATA,active_gas ; Read start gas (1-5) | |
353
b5b030c1ae7e
Avoid spurious switch-depth stops with 3 or more gas.
JeanDo
parents:
349
diff
changeset
|
2001 movff EEDATA,char_I_current_gas |
0 | 2002 |
2003 decf active_gas,W ; Gas 0-4 | |
2004 mullw d'4' | |
2005 movf PRODL,W | |
2006 addlw d'7' ; = address for He ratio | |
2007 movwf EEADR | |
2008 call read_eeprom ; Read He ratio | |
2009 movff EEDATA,char_I_He_ratio ; And copy into hold register | |
292 | 2010 |
2011 decf EEADR,F | |
0 | 2012 call read_eeprom ; Read O2 ratio |
2013 movff EEDATA, char_I_O2_ratio ; O2 ratio | |
292 | 2014 |
0 | 2015 movff char_I_He_ratio, wait_temp ; copy into bank1 register |
2016 bsf STATUS,C ; Borrow bit | |
2017 movlw d'100' ; 100% | |
2018 subfwb wait_temp,W ; minus He | |
2019 bsf STATUS,C ; Borrow bit | |
311
91371c7553f5
BUGFIX typo when passing Gas#4 to deko model (bug#43)
JeanDo
parents:
301
diff
changeset
|
2020 subfwb EEDATA,W ; minus O2 |
91371c7553f5
BUGFIX typo when passing Gas#4 to deko model (bug#43)
JeanDo
parents:
301
diff
changeset
|
2021 movff WREG, char_I_N2_ratio ; = N2! |
0 | 2022 |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
2023 ; Configure gaslist_active flag register |
281 | 2024 read_int_eeprom d'27' |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
287
diff
changeset
|
2025 movff EEDATA, gaslist_active |
281 | 2026 return |