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