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
|
|
29 ; Startup Tasks for all modes
|
|
30 ostc_debug 'R' ; Sends debug-information to screen if debugmode active
|
|
31 call PLED_ClearScreen ; clean up OLED
|
|
32 call PLED_divemode_mask ; Display mask
|
|
33 call PLED_active_gas_divemode ; Display gas, if required
|
|
34 call PLED_temp_divemode ; Displays temperature
|
|
35
|
|
36 btfsc FLAG_apnoe_mode
|
|
37 bsf realdive ; Set Realdive flag in Apnoe mode
|
|
38
|
|
39 btfsc gauge_mode
|
|
40 bra diveloop_loop ; Skip in gauge mode
|
|
41 btfsc FLAG_apnoe_mode
|
|
42 bra diveloop_loop ; Skip in apnoe mode
|
|
43
|
|
44 ; Startup Tasks for deco modes
|
|
45 call PLED_display_ndl_mask ; display "no stop" if not in gauge or apnoe mode
|
|
46
|
|
47 diveloop_loop: ; The diveloop starts here
|
|
48 btfss onesecupdate ; tasks any new second
|
|
49 bra diveloop_loop2
|
|
50
|
|
51 btfsc gauge_mode ; Only in gauge mode
|
|
52 bra diveloop_loop1a ; One Second Tasks in Gauge mode
|
|
53 btfsc FLAG_apnoe_mode ; Only in apnoe mode
|
|
54 bra diveloop_loop1b ; One Second Tasks in Apnoe mode
|
|
55 btfsc FLAG_const_ppO2_mode ; only in const_ppO2_mode
|
|
56 bra diveloop_loop1c ; One Second Tasks in const_ppO2 mode
|
|
57
|
|
58 ; Tasks only for OC modes
|
|
59 call check_ppO2 ; check ppO2 and displays warning if required
|
|
60 call calc_deko_divemode ; calculate decompression and display result (any two seconds)
|
|
61 bra diveloop_loop1x ; Common Tasks
|
|
62
|
|
63 ; Tasks only for Gauge mode
|
|
64 diveloop_loop1a:
|
|
65 btfss premenu ; Is the divemode menu active?
|
|
66 call PLED_divemins ; display (new) divetime!
|
|
67 call timeout_divemode ; dive finished? This routine sets the required flags
|
|
68
|
|
69 btfsc stopwatch_active ; =1: Show Average Depth instead of Temperature
|
|
70 call PLED_stopwatch_show ; Show stopwatch only in Average mode
|
|
71
|
|
72 btfsc twosecupdate ; two seconds after the last call
|
|
73 bra diveloop_loop1a2 ; Common Tasks
|
|
74
|
|
75 bsf twosecupdate ; Routines used in the "other second"
|
|
76 call calc_average_depth ; calculate average depth
|
|
77
|
|
78 bra diveloop_loop1x ; Common Tasks
|
|
79
|
|
80 diveloop_loop1a2:
|
|
81 bcf twosecupdate
|
|
82 bra diveloop_loop1x ; Common Tasks
|
|
83
|
|
84 ; Tasks only for Apnoe mode
|
|
85 diveloop_loop1b:
|
|
86 call divemode_apnoe_tasks ; 1 sec. Apnoe tasks
|
|
87 bra diveloop_loop1x ; Common Tasks
|
|
88
|
|
89 ; Tasks only for ppO2 mode
|
|
90 diveloop_loop1c:
|
|
91 call PLED_const_ppO2_value ; display const ppO2 setting in [Bar]
|
|
92 call calc_deko_divemode ; calculate decompression and display result (any two seconds)
|
3
|
93 btfsc is_bailout ; Are we in Bailout mode?
|
|
94 call check_ppO2_bail ; Yes, display ppO2 (If required)
|
|
95
|
0
|
96 bra diveloop_loop1x ; Common Tasks
|
|
97
|
|
98 ; Common Tasks for all modes
|
|
99 diveloop_loop1x:
|
|
100 call timeout_divemode ; dive finished? This routine sets the required flags
|
|
101 btfsc low_battery_state ; If battery is low, then...
|
|
102 call update_batt_voltage_divemode ; Display Battery Symbol/Voltage!
|
|
103 btfsc premenu ; is Menu? displayed?
|
|
104 call timeout_premenu_divemode ; No, so check for timeout premenu
|
|
105 btfsc menubit ; is the Dive mode menu displayed?
|
|
106 call timeout_divemenu ; Yes, so check for timeout divemenu
|
|
107 call set_leds_divemode ; Sets warnings, if required. Also Sets buzzer
|
|
108 btfsc enter_error_sleep ; Enter Fatal Error Routine?
|
|
109 goto fatal_error_sleep ; Yes (In Sleepmode_vxx.asm!)
|
|
110
|
|
111 btfsc stopwatch_active ; =1: Show Average Depth instead of Temperature
|
|
112 call PLED_stopwatch_show ; Show stopwatch only in Average mode
|
|
113
|
|
114 bcf onesecupdate ; one seconds update done
|
|
115
|
|
116 GETCUSTOM8 d'38' ; Show seconds (=1?)
|
|
117 movwf lo
|
|
118 movlw d'1'
|
|
119 cpfseq lo ; =1?
|
|
120 bra diveloop_loop2 ; No, minutes only
|
|
121 bsf update_divetime ; Set Update flag
|
|
122
|
|
123
|
|
124 diveloop_loop2:
|
|
125 btfss update_divetime ; display new divetime?
|
|
126 bra diveloop_loop3 ; No
|
|
127 btfsc premenu ; Is the divemode menu active?
|
|
128 bra diveloop_loop2a ; Yes
|
|
129 call PLED_divemins ; Display (new) divetime!
|
|
130 btfsc FLAG_const_ppO2_mode ; only in const_ppO2_mode
|
|
131 call PLED_const_ppO2_value ; display const ppO2 setting in [Bar]
|
|
132 btfsc ppO2_show_value ; show ppO2?
|
|
133 call check_ppO2 ; check ppO2 and displays warning if required
|
|
134
|
|
135 diveloop_loop2a:
|
|
136 bcf update_divetime ; clear flag
|
|
137
|
|
138
|
|
139 diveloop_loop3:
|
|
140 btfss menubit ; Divemode menu active?
|
|
141 call test_switches_divemode ; No, Check switches normal
|
|
142
|
|
143 btfsc menubit ; Divemode menu active?
|
|
144 call test_switches_divemode_menu ; Yes, check switches divemode menu
|
|
145
|
|
146 btfss divemode ; Dive finished?
|
|
147 bra end_dive ; Dive finished!
|
|
148
|
|
149 btfsc pressure_refresh ; new pressure available?
|
|
150 call update_divemode1 ; Yes, display new depth
|
|
151 bcf pressure_refresh ; until new pressure is available
|
|
152
|
|
153 btfsc oneminupdate ; one minute tasks
|
|
154 call update_divemode60 ; Update clock, etc.
|
|
155
|
|
156 btfsc store_sample ; store new sample?
|
|
157 call store_dive_data ; Store profile data
|
|
158
|
2
|
159 btfsc menubit ; Sleep only with inactive menu...
|
|
160 bra diveloop_loop4
|
|
161
|
|
162 btfsc simulatormode_active ; Do not sleep in Simualtor mode
|
|
163 bra diveloop_loop4
|
|
164
|
0
|
165 sleep
|
|
166 nop
|
2
|
167 diveloop_loop4:
|
0
|
168 bra diveloop_loop ; Loop the divemode
|
|
169
|
|
170 timeout_premenu_divemode:
|
|
171 incf timeout_counter3,F ; Yes...
|
|
172
|
|
173 GETCUSTOM8 d'4' ; loads premenu_timeout into WREG
|
|
174 cpfsgt timeout_counter3 ; ... longer then premenu_timeout
|
|
175 return ; No!
|
|
176
|
|
177 bcf premenu ; Yes, so clear "Menu?" and clear pre_menu bit
|
|
178 call PLED_menu_clear ; Remove "Menu?"
|
|
179 return
|
|
180
|
|
181 divemode_apnoe_tasks: ; 1 sec. Apnoe tasks
|
|
182 call PLED_display_apnoe_descent ; Show descent timer
|
|
183
|
|
184 btfsc divemode2 ; Time running?
|
|
185 bra divemode_apnoe_tasks2 ; New descent, reset data if flag is set
|
|
186
|
|
187 call PLED_display_apnoe_surface
|
|
188 incf apnoe_surface_secs,F
|
|
189 movlw d'60'
|
|
190 cpfseq apnoe_surface_secs
|
|
191 bra divemode_apnoe_tasks1
|
|
192 clrf apnoe_surface_secs
|
|
193 incf apnoe_surface_mins,F
|
|
194
|
|
195 divemode_apnoe_tasks1:
|
|
196 bcf FLAG_active_descent ; Clear flag
|
|
197 btfsc divemode2 ; Time running?
|
|
198 return ; Yes, return
|
|
199
|
|
200 bsf FLAG_active_descent ; Set Flag
|
|
201 return
|
|
202
|
|
203 divemode_apnoe_tasks2:
|
|
204 btfss FLAG_active_descent ; Are descending?
|
|
205 return ; No, We are at the surface
|
|
206 rcall apnoe_calc_maxdepth ; Yes!
|
|
207
|
|
208 divemode_apnoe_tasks3:
|
|
209 call PLED_apnoe_clear_surface ; Clear Surface timer
|
|
210
|
|
211 clrf apnoe_timeout_counter ; Delete timeout
|
|
212 clrf apnoe_surface_secs
|
|
213 clrf apnoe_surface_mins
|
|
214 clrf apnoe_secs
|
|
215 clrf apnoe_mins ; Reset Descent time
|
|
216 clrf max_pressure+0
|
|
217 clrf max_pressure+1 ; Reset Max. Depth
|
|
218 bcf FLAG_active_descent ; Clear flag
|
|
219 return
|
|
220
|
|
221 apnoe_calc_maxdepth:
|
|
222 movff apnoe_max_pressure+0,sub_a+0
|
|
223 movff apnoe_max_pressure+1,sub_a+1
|
|
224 movff max_pressure+0,sub_b+0
|
|
225 movff max_pressure+1,sub_b+1
|
|
226 call sub16 ; sub_c = sub_a - sub_b
|
|
227 ; apnoe_max_pressure<max_pressure -> neg_flag=1
|
|
228 ; max_pressure<=apnoe_max_pressure -> neg_flag=0
|
|
229 btfss neg_flag
|
|
230 return
|
|
231 ;apnoe_max_pressure<max_pressure
|
|
232 movff max_pressure+0,apnoe_max_pressure+0
|
|
233 movff max_pressure+1,apnoe_max_pressure+1
|
|
234 return
|
|
235
|
|
236 set_leds_divemode:
|
|
237 call clear_LEDy ; LEDy OFF
|
|
238 movff char_O_gradient_factor,lo ; gradient factor absolute
|
|
239
|
|
240 GETCUSTOM8 d'14' ; threshold for LED warning
|
|
241 cpfslt lo ;
|
|
242 call warn_gf1 ; show warning, set flags
|
|
243
|
|
244 btfsc ppO2_warn_value ; warn because of too high ppO2?
|
|
245 call set_LEDy ; Yes
|
|
246
|
|
247 movff char_I_deco_model,lo
|
|
248 decfsz lo,W ; jump over return if char_I_deco_model == 1
|
|
249 return
|
|
250
|
|
251 movff char_O_relative_gradient_GF,lo ; gradient factor relative (GF model)
|
|
252
|
|
253 GETCUSTOM8 d'14' ; threshold for LED warning
|
|
254 cpfslt lo ;
|
|
255 call warn_gf1 ; show warning, set flags
|
|
256
|
|
257 btfsc ppO2_warn_value ; warn because of too high ppO2?
|
|
258 call set_LEDy ; Yes
|
|
259
|
|
260 return
|
|
261
|
|
262 warn_gf1:
|
|
263 call set_LEDy ; LED Yellow on
|
|
264 movlw d'2' ; Type of Alarm
|
|
265 movwf AlarmType ; Copy to Alarm Register
|
|
266 bsf event_occured ; Set Event Flag
|
|
267 return
|
|
268
|
|
269 calc_deko_divemode:
|
|
270 btfsc twosecupdate ; two seconds after the last call
|
|
271 bra calc_deko_divemode2 ; Yes, calculate and display deco data ("first second")
|
|
272
|
|
273 ; Routines used in the "other second"
|
|
274
|
|
275 bsf twosecupdate ; No, but next second!
|
|
276 call calc_average_depth ; calculate average depth
|
|
277 call calc_velocity ; calculate vertical velocity and display if > threshold (every two seconds)
|
|
278
|
|
279 ; calculate ppO2 in 0.1Bar (e.g. 150 = 1.50Bar ppO2)
|
|
280 movff amb_pressure+0,xA+0
|
|
281 movff amb_pressure+1,xA+1
|
|
282 movlw LOW d'10'
|
|
283 movwf xB+0
|
|
284 movlw HIGH d'10'
|
|
285 clrf xB+1
|
|
286 call div16x16 ; xC=p_amb/10
|
|
287 movff xC+0,xA+0
|
|
288 movff xC+1,xA+1
|
|
289 movff char_I_O2_ratio,xB+0
|
|
290 clrf xB+1
|
|
291 call mult16x16 ; char_I_O2_ratio * p_amb/10
|
|
292 movff xC+0,xA+0
|
|
293 movff xC+1,xA+1
|
|
294 movlw LOW d'100'
|
|
295 movwf xB+0
|
|
296 movlw HIGH d'100'
|
|
297 clrf xB+1
|
|
298 call div16x16 ; xC=(char_I_O2_ratio * p_amb/10)/100
|
|
299
|
|
300 ; Copy ppO2 for CNS calculation
|
|
301 movff xC+0, char_I_actual_ppO2 ; copy last ppO2 to buffer register
|
|
302 btfsc FLAG_const_ppO2_mode ; do in const_ppO2_mode
|
|
303 movff char_I_const_ppO2, char_I_actual_ppO2 ; copy last ppO2 to buffer register
|
|
304
|
|
305 ; Calculate CNS
|
|
306 call main_calc_CNS_fraction ; calculate CNS
|
|
307 movlb b'00000001' ; rambank 1 selected
|
|
308
|
|
309 ; Check if CNS should be displayed
|
|
310 movff char_O_CNS_fraction,lo ; copy into bank1
|
|
311 GETCUSTOM8 d'27' ; cns_display_high
|
|
312 subwf lo,W
|
|
313 btfsc STATUS,C
|
|
314 call PLED_display_cns ; Show CNS
|
|
315
|
|
316 ; Check for decompression gases if in decomode
|
|
317 divemode_check_decogases: ; CALLed from Simulator
|
|
318 btfss dekostop_active
|
|
319 bra reset_decompression_gases ; While in NDL, do not set deompression gas
|
|
320 ; 1. Find active gas with deepest change depth < current depth
|
|
321 ; 2. Set Decogas
|
|
322
|
|
323 movff rel_pressure+0,xA+0
|
|
324 movff rel_pressure+1,xA+1
|
|
325 movlw d'100'
|
|
326 movwf xB+0
|
|
327 clrf xB+1
|
|
328 call div16x16 ; compute depth in full m -> result in xC+0
|
|
329 clrf lo ; clear depth for comparison
|
|
330
|
|
331 ; check gas1
|
|
332 read_int_eeprom d'27' ; read flag register
|
|
333 btfss EEDATA,0 ; check active flag
|
|
334 bra check_decogas2 ; skip inactive gases!
|
|
335 read_int_eeprom d'28' ; read gas_change_depth
|
|
336 movf xC+0,W ; load depth in m into WREG
|
|
337 cpfslt EEDATA ; gas_change_depth > current depth?
|
|
338 bra check_decogas2 ; W < EEDATA -> current depth lower then gas_change_depth
|
|
339
|
|
340 movff EEDATA,lo ; deepest gas_change_depth in lo
|
|
341 movlw d'1'
|
|
342 movwf hi ; Decogas # in hi (1-5)
|
|
343
|
|
344 check_decogas2:
|
|
345 read_int_eeprom d'27' ; read flag register
|
|
346 btfss EEDATA,1 ; check active flag
|
|
347 bra check_decogas3 ; skip inactive gases!
|
|
348 read_int_eeprom d'29' ; read gas_change_depth
|
|
349 movf xC+0,W ; load depth in m into WREG
|
|
350 cpfslt EEDATA ; gas_change_depth > current depth?
|
|
351 bra check_decogas3 ; W < EEDATA -> current depth lower then gas_change_depth
|
|
352
|
|
353 read_int_eeprom d'29' ; read gas_change_depth
|
|
354 movf lo,W ; load current gas_change_depth into WREG
|
|
355 cpfsgt EEDATA ; last gas_change_depth > current gas_change_depth ?
|
|
356 bra check_decogas3 ; W < lo -> last gas_change_depth > current gas_change_depth
|
|
357 movff EEDATA,lo ; deepest gas_change_depth in lo
|
|
358 movlw d'2'
|
|
359 movwf hi ; Decogas # in hi (1-5)
|
|
360
|
|
361 check_decogas3:
|
|
362 read_int_eeprom d'27' ; read flag register
|
|
363 btfss EEDATA,2 ; check active flag
|
|
364 bra check_decogas4 ; skip inactive gases!
|
|
365 read_int_eeprom d'30' ; read gas_change_depth
|
|
366 movf xC+0,W ; load depth in m into WREG
|
|
367 cpfslt EEDATA ; gas_change_depth > current depth?
|
|
368 bra check_decogas4 ; W < EEDATA -> current depth lower then gas_change_depth
|
|
369
|
|
370 read_int_eeprom d'30' ; read gas_change_depth
|
|
371 movf lo,W ; load current gas_change_depth into WREG
|
|
372 cpfsgt EEDATA ; last gas_change_depth > current gas_change_depth ?
|
|
373 bra check_decogas4 ; W < lo -> last gas_change_depth > current gas_change_depth
|
|
374 movff EEDATA,lo ; deepest gas_change_depth in lo
|
|
375 movlw d'3'
|
|
376 movwf hi ; Decogas # in hi (1-5)
|
|
377
|
|
378 check_decogas4:
|
|
379 read_int_eeprom d'27' ; read flag register
|
|
380 btfss EEDATA,3 ; check active flag
|
|
381 bra check_decogas5 ; skip inactive gases!
|
|
382 read_int_eeprom d'31' ; read gas_change_depth
|
|
383 movf xC+0,W ; load depth in m into WREG
|
|
384 cpfslt EEDATA ; gas_change_depth > current depth?
|
|
385 bra check_decogas5 ; W < EEDATA -> current depth lower then gas_change_depth
|
|
386
|
|
387 read_int_eeprom d'31' ; read gas_change_depth
|
|
388 movf lo,W ; load current gas_change_depth into WREG
|
|
389 cpfsgt EEDATA ; last gas_change_depth > current gas_change_depth ?
|
|
390 bra check_decogas5 ; W < lo -> last gas_change_depth > current gas_change_depth
|
|
391 movff EEDATA,lo ; deepest gas_change_depth in lo
|
|
392 movlw d'4'
|
|
393 movwf hi ; Decogas # in hi (1-5)
|
|
394
|
|
395 check_decogas5:
|
|
396 read_int_eeprom d'27' ; read flag register
|
|
397 btfss EEDATA,4 ; check active flag
|
|
398 bra check_decogas_done ; skip inactive gases!
|
|
399 read_int_eeprom d'32' ; read gas_change_depth
|
|
400 movf xC+0,W ; load depth in m into WREG
|
|
401 cpfslt EEDATA ; gas_change_depth > current depth?
|
|
402 bra check_decogas_done ; W < EEDATA -> current depth lower then gas_change_depth
|
|
403
|
|
404 read_int_eeprom d'32' ; read gas_change_depth
|
|
405 movf lo,W ; load current gas_change_depth into WREG
|
|
406 cpfsgt EEDATA ; last gas_change_depth > current gas_change_depth ?
|
|
407 bra check_decogas_done ; W < lo -> last gas_change_depth > current gas_change_depth
|
|
408 movff EEDATA,lo ; deepest gas_change_depth in lo
|
|
409 movlw d'5'
|
|
410 movwf hi ; Decogas # in hi (1-5)
|
|
411
|
|
412 check_decogas_done:
|
|
413 ostc_debug 'E' ; Sends debug-information to screen if debugmode active
|
|
414
|
|
415 decf hi,F ; Gas 0-4
|
|
416 movff lo, char_I_deco_gas_change ; copy change_depth
|
|
417
|
|
418 movf hi,W ; Gas 0-4
|
|
419 mullw d'4'
|
|
420 movf PRODL,W
|
|
421 addlw d'7' ; = address for He ratio
|
|
422 movwf EEADR
|
|
423 call read_eeprom ; Read He ratio
|
|
424 movff EEDATA,char_I_deco_He_ratio ; And copy into hold register
|
|
425
|
|
426
|
|
427 movf hi,W ; Gas 0-4
|
|
428 mullw d'4'
|
|
429 movf PRODL,W
|
|
430 addlw d'6' ; = address for O2 ratio
|
|
431 movwf EEADR
|
|
432 call read_eeprom ; Read O2 ratio
|
|
433
|
|
434 movff char_I_deco_He_ratio, wait_temp ; copy into bank1 register
|
|
435 bsf STATUS,C ; Borrow bit
|
|
436 movlw d'100' ; 100%
|
|
437 subfwb wait_temp,W ; minus He
|
|
438 bsf STATUS,C ; Borrow bit
|
|
439 subfwb EEDATA,F ; minus O2
|
|
440 movff EEDATA, char_I_deco_N2_ratio ; = N2!
|
|
441 bra skip_decompression_gases
|
|
442
|
|
443 reset_decompression_gases: ; reset the deco gas while in NDL
|
|
444 ostc_debug 'F' ; Sends debug-information to screen if debugmode active
|
|
445 clrf lo
|
|
446 movff lo, char_I_deco_gas_change ; clear
|
|
447 movff lo, char_I_deco_N2_ratio ; clear
|
|
448 movff lo, char_I_deco_He_ratio ; clear
|
|
449 skip_decompression_gases:
|
|
450 ;call PLED_gaschange_DEBUG
|
|
451 return
|
|
452
|
|
453 calc_deko_divemode2:
|
|
454 bcf twosecupdate
|
|
455
|
|
456 btfsc gauge_mode ; ignore decompression calculation in gauge mode
|
|
457 return
|
|
458 btfsc FLAG_apnoe_mode ; ignore decompression calculation in apnoe mode
|
|
459 return
|
|
460
|
|
461 ostc_debug 'B' ; Sends debug-information to screen if debugmode active
|
|
462 call divemode_prepare_flags_for_deco
|
|
463 call deco_main_calc_hauptroutine ; calc_tissue
|
|
464 movlb b'00000001' ; rambank 1 selected
|
|
465 ostc_debug 'C' ; Sends debug-information to screen if debugmode active
|
|
466
|
|
467 movff char_O_deco_status,deco_status ;
|
|
468 tstfsz deco_status ; deco_status=0 if decompression calculation done
|
|
469 return ; calculation not yet finished!
|
|
470
|
|
471 movff char_O_array_decodepth+0,wait_temp ; copy ceiling to temp register
|
|
472 tstfsz wait_temp ; Ceiling<0m?
|
|
473 bra calc_deko_divemode3 ; Yes!
|
|
474
|
|
475 btfsc dekostop_active
|
|
476 call PLED_display_ndl_mask ; Clear deco data, display nostop time
|
|
477 bcf dekostop_active ; clear flag
|
|
478
|
|
479 clrf decodata+0 ; for profile memory
|
|
480 movff char_O_nullzeit,decodata+1 ; nostop time
|
|
481
|
|
482 call PLED_display_ndl ; display no deco limit
|
|
483 return
|
|
484
|
|
485 divemode_prepare_flags_for_deco:
|
|
486 movff amb_pressure+0,int_I_pres_respiration+0 ; lo and copy result to deco routine
|
|
487 movff amb_pressure+1,int_I_pres_respiration+1 ; hi
|
|
488 GETCUSTOM8 d'11' ; Saturation multiplier %
|
|
489 movwf wait_temp
|
|
490 movff wait_temp,char_I_saturation_multiplier
|
|
491 GETCUSTOM8 d'12' ; Desaturation multiplier %
|
|
492 movwf wait_temp
|
|
493 movff wait_temp,char_I_desaturation_multiplier
|
|
494 GETCUSTOM8 d'16' ; Deco distance to decostop in 1/10 meter for simulation
|
|
495 movwf wait_temp
|
|
496 movff wait_temp,char_I_deco_distance
|
|
497 GETCUSTOM8 d'29' ; Depth Last Deco in meter for simulation
|
|
498 movwf wait_temp
|
|
499 movff wait_temp,char_I_depth_last_deco
|
|
500 call restart_set_modes_and_flags ; Sets decomode (char_I_deco_model) and flags (again)
|
|
501 return
|
|
502
|
|
503 calc_deko_divemode3:
|
|
504 btfss dekostop_active
|
|
505 call PLED_display_deko_mask ; clear nostop time, display decodata
|
|
506 bsf dekostop_active ; Set flag
|
|
507
|
|
508 movff char_O_array_decodepth+0,decodata+0 ; ceiling
|
|
509 movff char_O_array_decotime,decodata+1 ; length of first stop in minues
|
|
510
|
|
511 call PLED_display_deko ; display decodata
|
|
512 return
|
|
513
|
|
514 store_dive_data: ; CF20 seconds gone
|
|
515 bcf store_sample ; update only any CF20 seconds
|
|
516 bsf update_divetime ; update divemins every CF20 seconds
|
|
517
|
|
518 call clear_LEDg ; LEDg off
|
|
519
|
|
520 btfsc header_stored ; Header already stored?
|
|
521 bra store_dive_data2 ; Yes, store only profile data
|
|
522 bsf header_stored ; Store header
|
|
523
|
|
524 movff eeprom_address+0, eeprom_header_address+0 ; store startposition
|
|
525 movff eeprom_address+1, eeprom_header_address+1 ; store startposition
|
|
526
|
|
527 ; shift address for header
|
|
528 ; the header will be stored after the dive
|
|
529 incf_eeprom_address d'47' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
|
|
530
|
|
531 store_dive_data2:
|
|
532 movf rel_pressure+0,W ; store depth with every sample
|
|
533 call write_external_eeprom
|
|
534 movf rel_pressure+1,W
|
|
535 call write_external_eeprom
|
|
536
|
|
537 ;First, find out how many bytes will append to this sample....
|
|
538 clrf ProfileFlagByte ; clear number of bytes to append
|
|
539
|
|
540 ; Check Extented informations
|
|
541 decfsz divisor_temperature,W ; Check divisor
|
|
542 bra check_extended1
|
|
543 movlw d'2' ; Information length
|
|
544 addwf ProfileFlagByte,F ; add to ProfileFlagByte
|
|
545 check_extended1:
|
|
546 decfsz divisor_deco,W ; Check divisor
|
|
547 bra check_extended2
|
|
548 movlw d'2' ; Information length
|
|
549 addwf ProfileFlagByte,F ; add to ProfileFlagByte
|
|
550 check_extended2:
|
|
551 decfsz divisor_tank,W ; Check divisor
|
|
552 bra check_extended3
|
|
553 movlw d'2' ; Information length
|
|
554 addwf ProfileFlagByte,F ; add to ProfileFlagByte
|
|
555 check_extended3:
|
|
556 decfsz divisor_ppo2,W ; Check divisor
|
|
557 bra check_extended4
|
|
558 movlw d'3' ; Information length
|
|
559 addwf ProfileFlagByte,F ; add to ProfileFlagByte
|
|
560 check_extended4:
|
|
561 decfsz divisor_deco_debug,W; Check divisor
|
|
562 bra check_extended5
|
|
563 movlw d'9' ; Information length
|
|
564 addwf ProfileFlagByte,F ; add to ProfileFlagByte
|
|
565 check_extended5:
|
|
566 decfsz divisor_nuy2,W ; Check divisor
|
|
567 bra check_extended6
|
|
568 movlw d'0' ; Information length
|
|
569 addwf ProfileFlagByte,F ; add to ProfileFlagByte
|
|
570 check_extended6:
|
|
571
|
|
572 ; Second, check global event flag
|
|
573 btfss event_occured ; Check global event flag
|
|
574 bra store_dive_data3 ; No Event
|
|
575 movlw d'1'
|
|
576 addwf ProfileFlagByte,F ; add one byte (The EventByte)
|
|
577
|
|
578 clrf EventByte ; reset EventByte
|
|
579
|
|
580 movf AlarmType,W ; Type of Alarm Bit 0-3
|
|
581 addwf EventByte,F ; Copy to EventByte Bit 0-3
|
|
582 clrf AlarmType ; Reset AlarmType
|
|
583
|
|
584 ; Third, check events and add aditional bytes
|
|
585 btfss manual_gas_changed ; Check flag
|
|
586 bra check_event1
|
|
587 movlw d'2' ; Information length
|
|
588 addwf ProfileFlagByte,F ; add to ProfileFlagByte
|
|
589 bsf EventByte,4 ; Also set Flag in EventByte!
|
|
590 check_event1:
|
|
591 btfss stored_gas_changed ; Check flag
|
|
592 bra check_event2
|
|
593 movlw d'1' ; Information length
|
|
594 addwf ProfileFlagByte,F ; add to ProfileFlagByte
|
|
595 bsf EventByte,5 ; Also set Flag in EventByte!
|
|
596 check_event2:
|
|
597 bsf ProfileFlagByte,7 ; Set EventByte Flag in ProfileFlagByte
|
|
598
|
|
599 store_dive_data3:
|
|
600 movf ProfileFlagByte,W ; finally, write ProfileFlagByte!
|
|
601 call write_external_eeprom
|
|
602
|
|
603 btfss event_occured ; Check global event flag (again)
|
|
604 bra store_dive_data4 ; No Event
|
|
605
|
|
606 ; Store the EventByte + additional bytes now
|
|
607 movf EventByte,W
|
|
608 call write_external_eeprom
|
|
609
|
|
610 btfss manual_gas_changed ; Check flag
|
|
611 bra store_dive_data3a
|
|
612 read_int_eeprom d'24' ; % O2 Gas6
|
|
613 movf EEDATA,W
|
|
614 call write_external_eeprom
|
|
615 read_int_eeprom d'25' ; % He Gas6
|
|
616 movf EEDATA,W
|
|
617 call write_external_eeprom
|
|
618
|
|
619 store_dive_data3a:
|
|
620 btfss stored_gas_changed ; Check flag
|
|
621 bra store_dive_data3b
|
|
622 movf active_gas,W ; Store active gas
|
|
623 call write_external_eeprom
|
|
624
|
|
625 store_dive_data3b:
|
|
626
|
|
627 store_dive_data4:
|
|
628 bcf event_occured ; Clear the global event flag
|
|
629 bcf manual_gas_changed ; Clear all events
|
|
630 bcf stored_gas_changed ; Clear all events
|
|
631
|
|
632 ; Store extended informations
|
|
633 decfsz divisor_temperature,F ; Check divisor
|
|
634 bra store_extended1
|
|
635 rcall store_dive_temperature
|
|
636 store_extended1:
|
|
637 decfsz divisor_deco,F ; Check divisor
|
|
638 bra store_extended2
|
|
639 rcall store_dive_decodata
|
|
640 store_extended2:
|
|
641 decfsz divisor_tank,F ; Check divisor
|
|
642 bra store_extended3
|
|
643 rcall store_dive_tankdata
|
|
644 store_extended3:
|
|
645 decfsz divisor_ppo2,F ; Check divisor
|
|
646 bra store_extended4
|
|
647 rcall store_dive_ppo2
|
|
648 store_extended4:
|
|
649 decfsz divisor_deco_debug,F; Check divisor
|
|
650 bra store_extended5
|
|
651 rcall store_dive_decodebug
|
|
652 store_extended5:
|
|
653 decfsz divisor_nuy2,F ; Check divisor
|
|
654 bra store_extended6
|
|
655 rcall store_dive_nuy2
|
|
656 store_extended6:
|
|
657
|
|
658 ; The next block is required to take care of "store never"
|
|
659 btfsc divisor_temperature,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
|
|
660 clrf divisor_temperature ; And clear register again, so it will never reach zero...
|
|
661 btfsc divisor_deco,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
|
|
662 clrf divisor_deco ; And clear register again, so it will never reach zero...
|
|
663 btfsc divisor_tank,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
|
|
664 clrf divisor_tank ; And clear register again, so it will never reach zero...
|
|
665 btfsc divisor_ppo2,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
|
|
666 clrf divisor_ppo2 ; And clear register again, so it will never reach zero...
|
|
667 btfsc divisor_deco_debug,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
|
|
668 clrf divisor_deco_debug ; And clear register again, so it will never reach zero...
|
|
669 btfsc divisor_nuy2,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
|
|
670 clrf divisor_nuy2 ; And clear register again, so it will never reach zero...
|
|
671
|
|
672 ostc_debug 'D' ; Sends debug-information to screen if debugmode active
|
|
673 return ; Done.
|
|
674
|
|
675 store_dive_nuy2:
|
|
676 GETCUSTOM8 d'26'
|
|
677 movwf divisor_nuy2 ; Reload divisor from CF
|
|
678 return
|
|
679
|
|
680 store_dive_decodebug:
|
|
681 movff 0x931,divisor_deco_debug ; Used as temp
|
|
682 movf divisor_deco_debug,W ; copy to WREG
|
|
683 call write_external_eeprom ; Store in EEPROM
|
|
684 movff 0x930,divisor_deco_debug ; Used as temp
|
|
685 movf divisor_deco_debug,W ; copy to WREG
|
|
686 call write_external_eeprom ; Store in EEPROM
|
|
687 movff 0x933,divisor_deco_debug ; Used as temp
|
|
688 movf divisor_deco_debug,W ; copy to WREG
|
|
689 call write_external_eeprom ; Store in EEPROM
|
|
690 movff 0x932,divisor_deco_debug ; Used as temp
|
|
691 movf divisor_deco_debug,W ; copy to WREG
|
|
692 call write_external_eeprom ; Store in EEPROM
|
|
693 movff 0x935,divisor_deco_debug ; Used as temp
|
|
694 movf divisor_deco_debug,W ; copy to WREG
|
|
695 call write_external_eeprom ; Store in EEPROM
|
|
696 movff 0x934,divisor_deco_debug ; Used as temp
|
|
697 movf divisor_deco_debug,W ; copy to WREG
|
|
698 call write_external_eeprom ; Store in EEPROM
|
|
699 movff 0x937,divisor_deco_debug ; Used as temp
|
|
700 movf divisor_deco_debug,W ; copy to WREG
|
|
701 call write_external_eeprom ; Store in EEPROM
|
|
702 movff 0x936,divisor_deco_debug ; Used as temp
|
|
703 movf divisor_deco_debug,W ; copy to WREG
|
|
704 call write_external_eeprom ; Store in EEPROM
|
|
705 movff 0x938,divisor_deco_debug ; Used as temp
|
|
706 movf divisor_deco_debug,W ; copy to WREG
|
|
707 call write_external_eeprom ; Store in EEPROM
|
|
708 GETCUSTOM8 d'25'
|
|
709 movwf divisor_deco_debug ; Reload divisor from CF
|
|
710 return
|
|
711
|
|
712 store_dive_ppo2:
|
|
713 movlw 0x00 ; Dummy
|
|
714 call write_external_eeprom
|
|
715 movlw 0x00 ; Dummy
|
|
716 call write_external_eeprom
|
|
717 movlw 0x00 ; Dummy
|
|
718 call write_external_eeprom
|
|
719 GETCUSTOM8 d'24'
|
|
720 movwf divisor_ppo2 ; Reload divisor from CF
|
|
721 return
|
|
722
|
|
723 store_dive_tankdata:
|
|
724 movlw d'0' ; Dummy Tank1
|
|
725 call write_external_eeprom
|
|
726 movlw d'0' ; Dummy Tank2
|
|
727 call write_external_eeprom
|
|
728 GETCUSTOM8 d'23'
|
|
729 movwf divisor_tank ; Reload divisor from CF
|
|
730 return
|
|
731
|
|
732 store_dive_decodata:
|
|
733 movf decodata+0,W ; =0:no stop dive, if in deco mode: ceiling in m
|
|
734 call write_external_eeprom
|
|
735 movf decodata+1,W ; no stop time of length of first stop
|
|
736 call write_external_eeprom
|
|
737 GETCUSTOM8 d'22'
|
|
738 movwf divisor_deco ; Reload divisor from CF
|
|
739 return
|
|
740
|
|
741 store_dive_temperature:
|
|
742 movf temperature+0,W ; append temperature to current sample!
|
|
743 call write_external_eeprom
|
|
744 movf temperature+1,W
|
|
745 call write_external_eeprom
|
|
746 GETCUSTOM8 d'21'
|
|
747 movwf divisor_temperature ; Reload divisor from CF
|
|
748 return
|
|
749
|
|
750 calc_velocity: ; called every two seconds
|
|
751 btfss divemode
|
|
752 bra do_not_display_velocity ; display velocity only in divemode
|
|
753
|
|
754 calc_velocity2:
|
|
755 movff amb_pressure+0,sub_a+0
|
|
756 movff amb_pressure+1,sub_a+1
|
|
757 movff last_pressure+0,sub_b+0
|
|
758 movff last_pressure+1,sub_b+1
|
|
759 movff amb_pressure+0,last_pressure+0 ; store old value for velocity
|
|
760 movff amb_pressure+1,last_pressure+1
|
|
761
|
|
762 call sub16 ; sub_c = amb_pressure - last_pressure
|
|
763
|
|
764 movff sub_c+0,xA+0
|
|
765 movff sub_c+1,xA+1
|
|
766 movlw d'39' ;77 when called every second....
|
|
767 movwf xB+0
|
|
768 clrf xB+1
|
|
769 call mult16x16 ; differential pressure in mBar*77...
|
|
770 movff xC+0,divA+0
|
|
771 movff xC+1,divA+1
|
|
772 movlw d'7'
|
|
773 movwf divB
|
|
774 call div16 ; devided by 2^7 equals velocity in m/min
|
|
775
|
|
776 movlw d'99'
|
|
777 cpfsgt divA
|
|
778 bra calc_velocity3
|
|
779 movwf divA ; divA=99
|
|
780
|
|
781 calc_velocity3:
|
|
782
|
|
783 GETCUSTOM8 d'5' ; threshold for display vertical velocity
|
|
784 subwf divA+0,W ;
|
|
785
|
|
786 btfss STATUS,C
|
|
787 bra do_not_display_velocity
|
|
788
|
|
789 update_velocity:
|
|
790 bsf display_velocity
|
|
791 call PLED_display_velocity
|
|
792 return
|
|
793
|
|
794 do_not_display_velocity:
|
|
795 btfss display_velocity ; Velocity was not displayed, do not delete
|
|
796 return
|
|
797
|
|
798 bcf display_velocity ; Velocity was displayed, delete velocity now
|
|
799 call PLED_display_velocity_clear
|
|
800 return
|
|
801
|
|
802 check_ppO2: ; check current ppO2 and display warning if required
|
|
803 btfsc FLAG_const_ppO2_mode ; ignore in ppO2 mode....
|
|
804 return
|
|
805
|
3
|
806 check_ppO2_bail: ; In CC mode but bailout active!
|
0
|
807 movff amb_pressure+0,xA+0
|
|
808 movff amb_pressure+1,xA+1
|
|
809 movlw d'10'
|
|
810 movwf xB+0
|
|
811 clrf xB+1
|
|
812 call div16x16 ; xC=p_amb/10
|
|
813 movff xC+0,xA+0
|
|
814 movff xC+1,xA+1
|
|
815 movff char_I_O2_ratio,xB+0
|
|
816 clrf xB+1
|
|
817 call mult16x16 ; char_I_O2_ratio * p_amb/10
|
|
818
|
|
819 ; Check if ppO2 should be displayed
|
|
820 movff xC+0,sub_b+0
|
|
821 movff xC+1,sub_b+1
|
|
822 GETCUSTOM8 d'19' ; ppo2_display_high
|
|
823 mullw d'100' ; ppo2_display_high*100
|
|
824 movff PRODL,sub_a+0
|
|
825 movff PRODH,sub_a+1
|
|
826 call sub16
|
|
827 bcf ppO2_show_value ; clear flag
|
|
828 btfsc neg_flag
|
|
829 bsf ppO2_show_value ; set flag if required
|
|
830
|
|
831 ;check if we are within our warning thresholds!
|
|
832 bcf ppO2_warn_value ; clear flag
|
|
833 movff xC+0,sub_b+0
|
|
834 movff xC+1,sub_b+1
|
|
835 GETCUSTOM8 d'18' ; ppo2_warning_high
|
|
836 mullw d'100' ; ppo2_warning_high*100
|
|
837 movff PRODL,sub_a+0
|
|
838 movff PRODH,sub_a+1
|
|
839 call sub16
|
|
840 btfss neg_flag
|
|
841 bra check_ppO2_0 ; Not too high
|
|
842
|
|
843 bsf ppO2_warn_value ; set flag
|
|
844 movlw d'5' ; Type of Alarm
|
|
845 movwf AlarmType ; Copy to Alarm Register
|
|
846 bsf event_occured ; Set Event Flag
|
|
847
|
|
848 check_ppO2_0:
|
|
849 movff xC+0,sub_b+0
|
|
850 movff xC+1,sub_b+1
|
|
851 GETCUSTOM8 d'17' ; ppo2_warning_low
|
|
852 mullw d'100' ; ppo2_warning_low*100
|
|
853 movff PRODL,sub_a+0
|
|
854 movff PRODH,sub_a+1
|
|
855 call sub16
|
|
856 btfsc neg_flag
|
|
857 bra check_ppO2_1 ; Not too low
|
|
858
|
|
859 bsf ppO2_warn_value ; set flag
|
|
860 bsf ppO2_show_value ; show ppO2 if below threshold!
|
|
861 movlw d'4' ; Type of Alarm
|
|
862 movwf AlarmType ; Copy to Alarm Register
|
|
863 bsf event_occured ; Set Event Flag
|
|
864
|
|
865 check_ppO2_1:
|
|
866 btfsc ppO2_show_value ; show value?
|
|
867 bra check_ppO2_2 ; yes!
|
|
868
|
|
869 btfss ppO2_display_active ; is the value displayed?
|
|
870 bra check_ppO2_3 ; No, so clear not required
|
|
871
|
|
872 call PLED_show_ppO2_clear; Clear ppO2 value
|
|
873 bcf ppO2_display_active ; clear flag
|
|
874 bra check_ppO2_3 ; done
|
|
875
|
|
876 check_ppO2_2:
|
|
877 call PLED_show_ppO2 ; Display ppO2 (stored in xC)
|
|
878 bsf ppO2_display_active ; Set flag
|
|
879
|
|
880 check_ppO2_3:
|
|
881 return ; done
|
|
882
|
|
883
|
|
884 calculate_noflytime:
|
|
885 ; calculate nofly time
|
|
886 movff int_O_desaturation_time+0,xA+0
|
|
887 movff int_O_desaturation_time+1,xA+1
|
|
888 tstfsz xA+0 ; Desat=0?
|
|
889 bra calculate_noflytime2
|
|
890 tstfsz xA+1 ; Desat=0?
|
|
891 bra calculate_noflytime2
|
|
892 ; Desaturation time = zero
|
|
893 movlw d'1'
|
|
894 movwf nofly_time+0 ; Clear nofly time
|
|
895 clrf nofly_time+1 ; Clear nofly time
|
|
896 bcf nofly_active ; Clear flag
|
|
897 return
|
|
898
|
|
899 calculate_noflytime2:
|
|
900 movff xA+0,int_I_temp+0
|
|
901 movff xA+1,int_I_temp+1
|
|
902 GETCUSTOM8 .13 ; nofly_time_ratio
|
|
903 movwf xB+0
|
|
904 movff xB,char_I_temp
|
|
905 ostc_debug 'K' ; Sends debug-information to screen if debugmode active
|
|
906 call main_calc_percentage
|
|
907 movlb b'00000001' ; select ram bank 1
|
|
908 ostc_debug 'L' ; Sends debug-information to screen if debugmode active
|
|
909 movff int_I_temp+0,xA+0
|
|
910 movff int_I_temp+1,xA+1
|
|
911 tstfsz xA+0 ; Desat=0?
|
|
912 bra calculate_noflytime_2_final
|
|
913 tstfsz xA+1 ; Desat=0?
|
|
914 bra calculate_noflytime_2_final
|
|
915 ; noflytime = zero
|
|
916 movlw d'1'
|
|
917 movwf nofly_time+0 ; Clear nofly time
|
|
918 clrf nofly_time+1 ; Clear nofly time
|
|
919 bcf nofly_active ; Clear flag
|
|
920 return
|
|
921 calculate_noflytime_2_final:
|
|
922 movff xA+0,nofly_time+0
|
|
923 movff xA+1,nofly_time+1
|
|
924 bsf nofly_active ; Set flag
|
|
925 return
|
|
926
|
|
927 end_dive:
|
|
928 btfss realdive ; dive longer then one minute
|
|
929 goto end_dive_common ; No, discard everything
|
|
930
|
|
931 ; Dive finished (and longer then one minute or Apnoe timeout occured)
|
|
932
|
|
933 btfsc FLAG_apnoe_mode ; Calc max. depth (again) for very short apnoe dives
|
|
934 rcall apnoe_calc_maxdepth
|
|
935
|
|
936 ; calculate desaturation time
|
|
937 movff last_surfpressure_30min+0,int_I_pres_respiration+0 ; copy surface air pressure to deco routine
|
|
938 movff last_surfpressure_30min+1,int_I_pres_respiration+1 ; 30min old values
|
|
939
|
|
940 GETCUSTOM8 d'12' ; Desaturation multiplier %
|
|
941 movwf wait_temp
|
|
942 movff wait_temp,char_I_desaturation_multiplier
|
|
943
|
|
944 ostc_debug 'G' ; Sends debug-information to screen if debugmode active
|
|
945 call deco_main_calc_desaturation_time ; calculate desaturation time
|
|
946 movlb b'00000001' ; select ram bank 1
|
|
947 rcall calculate_noflytime ; Calc NoFly time
|
|
948 ostc_debug 'H' ; Sends debug-information to screen if debugmode active
|
|
949 ; store header and ...
|
|
950 movlw 0xFD ; .... End-of-Profile Bytes
|
|
951 call write_external_eeprom
|
|
952 movlw 0xFD
|
|
953 call write_external_eeprom
|
|
954 movlw 0xFE ; This positon will be overwritten for the next profile
|
|
955 call write_external_eeprom ; and is required to find the newest dive after a firmware reset
|
|
956
|
|
957 movff eeprom_header_address+0, eeprom_address+0 ; set header adress
|
|
958 movff eeprom_header_address+1, eeprom_address+1 ; write header
|
|
959
|
|
960 movlw 0xFA ; Header start
|
|
961 call write_external_eeprom
|
|
962 movlw 0xFA
|
|
963 call write_external_eeprom
|
|
964 movlw logbook_profile_version ; Defined in definitions_vxyy.asm
|
|
965 call write_external_eeprom
|
|
966 movf month,W ; Date
|
|
967 call write_external_eeprom
|
|
968 movf day,W
|
|
969 call write_external_eeprom
|
|
970 movf year,W
|
|
971 call write_external_eeprom
|
|
972 movf hours,W ; End of dive time
|
|
973 call write_external_eeprom
|
|
974 movf mins,W
|
|
975 call write_external_eeprom
|
|
976
|
|
977 btfss FLAG_apnoe_mode ; Store apnoe max or normal max (Which is only max from the last descent)
|
|
978 bra end_dive1 ; Store normal depth
|
|
979
|
|
980 movff apnoe_max_pressure+0,lo
|
|
981 movff apnoe_max_pressure+1,hi
|
|
982 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar]
|
|
983 movff lo,apnoe_max_pressure+0
|
|
984 movff hi,apnoe_max_pressure+1
|
|
985
|
|
986 movf apnoe_max_pressure+0,W ; Max. depth
|
|
987 call write_external_eeprom
|
|
988 movf apnoe_max_pressure+1,W
|
|
989 call write_external_eeprom
|
|
990 bra end_dive2 ; skip
|
|
991
|
|
992 end_dive1:
|
|
993 movff max_pressure+0,lo
|
|
994 movff max_pressure+1,hi
|
|
995 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar]
|
|
996 movff lo,max_pressure+0
|
|
997 movff hi,max_pressure+1
|
|
998
|
|
999 movf max_pressure+0,W ; Max. depth
|
|
1000 call write_external_eeprom
|
|
1001 movf max_pressure+1,W
|
|
1002 call write_external_eeprom
|
|
1003
|
|
1004 end_dive2:
|
|
1005 movf divemins+0,W ; divetime minutes
|
|
1006 call write_external_eeprom
|
|
1007 movf divemins+1,W
|
|
1008 call write_external_eeprom
|
|
1009 movf divesecs,W ; divetime seconds
|
|
1010 call write_external_eeprom
|
|
1011 movf mintemp+0,W ; minimum temperature
|
|
1012 call write_external_eeprom
|
|
1013 movf mintemp+1,W
|
|
1014 call write_external_eeprom
|
|
1015 movf last_surfpressure_30min+0,W ; airpressure before dive
|
|
1016 call write_external_eeprom
|
|
1017 movf last_surfpressure_30min+1,W
|
|
1018 call write_external_eeprom
|
|
1019 movff int_O_desaturation_time+0,lo ;
|
|
1020 movff int_O_desaturation_time+1,hi
|
|
1021 movf lo,W ; desaturation time in minutes
|
|
1022 call write_external_eeprom
|
|
1023 movf hi,W ;
|
|
1024 call write_external_eeprom
|
|
1025
|
|
1026 ; Gases....
|
|
1027 read_int_eeprom d'6' ; Read byte (stored in EEDATA)
|
|
1028 movf EEDATA,W
|
|
1029 call write_external_eeprom
|
|
1030 read_int_eeprom d'7' ; Read byte (stored in EEDATA)
|
|
1031 movf EEDATA,W
|
|
1032 call write_external_eeprom
|
|
1033
|
|
1034 read_int_eeprom d'10' ; Read byte (stored in EEDATA)
|
|
1035 movf EEDATA,W
|
|
1036 call write_external_eeprom
|
|
1037 read_int_eeprom d'11' ; Read byte (stored in EEDATA)
|
|
1038 movf EEDATA,W
|
|
1039 call write_external_eeprom
|
|
1040
|
|
1041 read_int_eeprom d'14' ; Read byte (stored in EEDATA)
|
|
1042 movf EEDATA,W
|
|
1043 call write_external_eeprom
|
|
1044 read_int_eeprom d'15' ; Read byte (stored in EEDATA)
|
|
1045 movf EEDATA,W
|
|
1046 call write_external_eeprom
|
|
1047
|
|
1048 read_int_eeprom d'18' ; Read byte (stored in EEDATA)
|
|
1049 movf EEDATA,W
|
|
1050 call write_external_eeprom
|
|
1051 read_int_eeprom d'19' ; Read byte (stored in EEDATA)
|
|
1052 movf EEDATA,W
|
|
1053 call write_external_eeprom
|
|
1054
|
|
1055 read_int_eeprom d'22' ; Read byte (stored in EEDATA)
|
|
1056 movf EEDATA,W
|
|
1057 call write_external_eeprom
|
|
1058 read_int_eeprom d'23' ; Read byte (stored in EEDATA)
|
|
1059 movf EEDATA,W
|
|
1060 call write_external_eeprom
|
|
1061
|
|
1062 read_int_eeprom d'24' ; % O2 Gas6
|
|
1063 movf EEDATA,W
|
|
1064 call write_external_eeprom
|
|
1065 read_int_eeprom d'25' ; % He Gas6
|
|
1066 movf EEDATA,W
|
|
1067 call write_external_eeprom
|
|
1068 read_int_eeprom d'33' ; start gas
|
|
1069 movf EEDATA,W
|
|
1070 call write_external_eeprom
|
|
1071
|
|
1072 movlw softwareversion_x ; Firmware version
|
|
1073 call write_external_eeprom
|
|
1074 movlw softwareversion_y
|
|
1075 call write_external_eeprom
|
|
1076 movf batt_voltage+0,W ; Battery voltage
|
|
1077 call write_external_eeprom
|
|
1078 movf batt_voltage+1,W
|
|
1079 call write_external_eeprom
|
|
1080
|
|
1081 GETCUSTOM8 d'20' ; sampling rate in WREG
|
|
1082 btfsc FLAG_apnoe_mode ; Apnoe mode?
|
|
1083 movlw d'1' ; Apnoe sampling rate
|
|
1084 call write_external_eeprom
|
|
1085
|
|
1086 movlw d'2' ; information size temperature
|
|
1087 movwf temp1 ; copy to bits 0-3
|
|
1088 swapf temp1,F ; swap nibbels 0-3 with 4-7
|
|
1089 GETCUSTOM8 d'21' ; Divisor temperature
|
|
1090 addwf temp1,W ; copy to bits 0-3, result in WREG
|
|
1091 call write_external_eeprom
|
|
1092
|
|
1093 movlw d'2' ; information size deco
|
|
1094 movwf temp1 ; copy to bits 0-3
|
|
1095 swapf temp1,F ; swap nibbels 0-3 with 4-7
|
|
1096 GETCUSTOM8 d'22' ; Divisor deco
|
|
1097 addwf temp1,W ; copy to bits 0-3, result in WREG
|
|
1098 call write_external_eeprom
|
|
1099
|
|
1100 movlw d'2' ; information size tank
|
|
1101 movwf temp1 ; copy to bits 0-3
|
|
1102 swapf temp1,F ; swap nibbels 0-3 with 4-7
|
|
1103 GETCUSTOM8 d'23' ; Divisor Tank
|
|
1104 addwf temp1,W ; copy to bits 0-3, result in WREG
|
|
1105 call write_external_eeprom
|
|
1106
|
|
1107 movlw d'3' ; information size pp02
|
|
1108 movwf temp1 ; copy to bits 0-3
|
|
1109 swapf temp1,F ; swap nibbels 0-3 with 4-7
|
|
1110 GETCUSTOM8 d'24' ; Divisor pp02
|
|
1111 addwf temp1,W ; copy to bits 0-3, result in WREG
|
|
1112 call write_external_eeprom
|
|
1113
|
|
1114 movlw d'9' ; information size Decodebug
|
|
1115 movwf temp1 ; copy to bits 0-3
|
|
1116 swapf temp1,F ; swap nibbels 0-3 with 4-7
|
|
1117 GETCUSTOM8 d'25' ; Divisor Decodebug
|
|
1118 addwf temp1,W ; copy to bits 0-3, result in WREG
|
|
1119 call write_external_eeprom
|
|
1120
|
|
1121 movlw d'0' ; information size nuy2
|
|
1122 movwf temp1 ; copy to bits 0-3
|
|
1123 swapf temp1,F ; swap nibbels 0-3 with 4-7
|
|
1124 GETCUSTOM8 d'26' ; Divisor nuy2
|
|
1125 addwf temp1,W ; copy to bits 0-3, result in WREG
|
|
1126 call write_external_eeprom
|
|
1127
|
|
1128 read_int_eeprom d'26' ; Read Salinity from EEPROM
|
|
1129 movf EEDATA,W
|
|
1130 call write_external_eeprom ; Store Salinity to Dive
|
|
1131
|
|
1132 movlw d'0' ; Spare
|
|
1133 call write_external_eeprom
|
|
1134
|
|
1135 movlw 0xFB ; Header stop
|
|
1136 call write_external_eeprom
|
|
1137 movlw 0xFB
|
|
1138 call write_external_eeprom
|
|
1139
|
|
1140 ; Increase total dive counter
|
|
1141 read_int_eeprom d'2' ; Read byte (stored in EEDATA)
|
|
1142 movff EEDATA,temp1 ; Low byte
|
|
1143 read_int_eeprom d'3' ; Read byte (stored in EEDATA)
|
|
1144 movff EEDATA,temp2 ; high byte
|
|
1145 bcf STATUS,C
|
|
1146 movlw d'1'
|
|
1147 addwf temp1
|
|
1148 movlw d'0'
|
|
1149 addwfc temp2
|
|
1150 movff temp1,EEDATA
|
|
1151 write_int_eeprom d'2' ; write byte stored in EEDATA
|
|
1152 movff temp2,EEDATA
|
|
1153 write_int_eeprom d'3' ; write byte stored in EEDATA
|
|
1154
|
|
1155 GETCUSTOM15 .28 ; Logbook Offset -> lo, hi
|
|
1156 tstfsz lo ; lo=0?
|
|
1157 bra change_logbook_offset1 ; No, adjust offset
|
|
1158 tstfsz hi ; hi=0?
|
|
1159 bra change_logbook_offset1 ; No, adjust offset
|
|
1160 bra change_logbook_offset2 ; lo=0 and hi=0 -> skip Offset routine
|
|
1161 change_logbook_offset1:
|
|
1162 movlw d'1'
|
|
1163 addwf lo
|
|
1164 movlw d'0'
|
|
1165 addwfc hi
|
|
1166 movlw d'112' ; CF28 *4 Bytes...
|
|
1167 addlw 0x82
|
|
1168 movwf EEADR
|
|
1169 movff lo,EEDATA
|
|
1170 call write_eeprom ; Lowbyte
|
|
1171 movlw d'112' ; CF28 *4 Bytes...
|
|
1172 addlw 0x83
|
|
1173 movwf EEADR
|
|
1174 movff hi,EEDATA
|
|
1175 call write_eeprom ; Highbyte
|
|
1176
|
|
1177 change_logbook_offset2:
|
|
1178 bcf simulatormode_active ; if we were in simulator mode
|
|
1179 call clear_LEDusb
|
|
1180
|
|
1181 end_dive_common:
|
|
1182 btfsc restore_deco_data ; Restore decodata?
|
|
1183 call simulator_restore_tissue_data ; Yes!
|
|
1184
|
|
1185 call deco_main_gradient_array
|
|
1186 movlb b'00000001' ; select ram bank 1
|
|
1187
|
|
1188 clrf surface_interval+0
|
|
1189 clrf surface_interval+1 ; Clear surface interval timer
|
|
1190
|
|
1191 goto surfloop ; and return to surfaceloop
|
|
1192
|
|
1193 timeout_divemode:
|
|
1194 btfss realdive ; Dive longer then one minute
|
|
1195 return
|
|
1196
|
|
1197 btfsc FLAG_apnoe_mode ; In Apnoe mode?
|
|
1198 bra timeout_divemode2 ; Yes, use CF30 [min] for timeout
|
|
1199
|
|
1200 btfsc simulatormode_active ; In Simulator mode?
|
|
1201 bra timeout_divemode3 ; Yes, use fixed 5 seconds timeout
|
|
1202
|
|
1203 bcf divemode
|
|
1204 incf timeout_counter,F
|
|
1205 GETCUSTOM8 d'2' ; diveloop_timeout
|
|
1206 addlw d'2' ; adds two seconds in case timout=zero!
|
|
1207 btfsc STATUS,C ; > 255?
|
|
1208 movlw d'255' ; Set to 255...
|
|
1209 decf WREG,F ; Limit to 254
|
|
1210 cpfsgt timeout_counter
|
|
1211 bsf divemode
|
|
1212 return
|
|
1213
|
|
1214 timeout_divemode2:
|
|
1215 incf timeout_counter,F ; seconds...
|
|
1216 movlw d'60'
|
|
1217 cpfseq timeout_counter ; timeout_counter=60?
|
|
1218 return ; No.
|
|
1219
|
|
1220 clrf timeout_counter
|
|
1221 bcf divemode
|
|
1222 incf apnoe_timeout_counter,F
|
|
1223 GETCUSTOM8 d'30' ; apnoe timeout [min]
|
|
1224 cpfseq apnoe_timeout_counter
|
|
1225 bsf divemode
|
|
1226 return
|
|
1227
|
|
1228 timeout_divemode3:
|
|
1229 bcf divemode
|
|
1230 incf timeout_counter,F
|
|
1231 movlw d'5' ; Fixed timeout of 5 seconds
|
|
1232 cpfsgt timeout_counter
|
|
1233 bsf divemode
|
|
1234 return
|
|
1235
|
|
1236 update_divemode1: ; update any second
|
|
1237 call set_dive_modes ; tests if depth>threshold
|
|
1238
|
|
1239 btfsc divemode
|
|
1240 call set_max_depth ; update max. depth if required
|
|
1241
|
|
1242 btfsc divemode
|
|
1243 call set_min_temp ; store min. temp if required
|
|
1244
|
|
1245 bcf temp_changed ; Display temperature?
|
|
1246 movf temperature+0,W
|
|
1247 cpfseq last_temperature+0
|
|
1248 bsf temp_changed ; Yes
|
|
1249 movf temperature+1,W
|
|
1250 cpfseq last_temperature+1
|
|
1251 bsf temp_changed ; Yes
|
|
1252 btfsc temp_changed
|
|
1253 call PLED_temp_divemode ; Displays temperature
|
|
1254
|
|
1255 bcf pres_changed ; Display new depth?
|
|
1256 movf amb_pressure+0,W
|
|
1257 cpfseq last_pressure+0
|
|
1258 bsf pres_changed ; Yes
|
|
1259 movf amb_pressure+1,W
|
|
1260 cpfseq last_pressure+1
|
|
1261 bsf pres_changed ; Yes
|
|
1262
|
|
1263 btfsc simulatormode_active ; always update depth when in simulator mode
|
|
1264 bsf pres_changed
|
|
1265
|
|
1266 btfsc pres_changed
|
|
1267 call PLED_depth ; Displays new depth
|
|
1268 return
|
|
1269
|
|
1270 update_divemode60: ; update any minute
|
|
1271 call get_battery_voltage ; gets battery voltage
|
|
1272 call set_powersafe ; red LED blinking if battery is low
|
|
1273 call PLED_max_pressure ; No, use normal max. depth
|
|
1274 call check_temp_extrema ; check for new temperature extremas
|
|
1275 bcf oneminupdate
|
|
1276 return
|
|
1277
|
|
1278 set_max_depth:
|
|
1279 movff max_pressure+0,sub_a+0
|
|
1280 movff max_pressure+1,sub_a+1
|
|
1281 movff rel_pressure+0,sub_b+0
|
|
1282 movff rel_pressure+1,sub_b+1
|
|
1283 call sub16 ; sub_c = sub_a - sub_b
|
|
1284 ; max_pressure<rel_pressure -> neg_flag=1
|
|
1285 ; rel_pressure<=max_pressure -> neg_flag=0
|
|
1286 btfss neg_flag
|
|
1287 return
|
|
1288 ;max_pressure<rel_pressure
|
|
1289 movff rel_pressure+0,max_pressure+0
|
|
1290 movff rel_pressure+1,max_pressure+1
|
|
1291 call PLED_max_pressure ; No, use normal max. depth
|
|
1292 return
|
|
1293
|
|
1294 set_min_temp:
|
|
1295 movff mintemp+0,sub_a+0
|
|
1296 movff mintemp+1,sub_a+1
|
|
1297 movff temperature+0,sub_b+0
|
|
1298 movff temperature+1,sub_b+1
|
|
1299 call sub16 ; sub_c = sub_a - sub_b
|
|
1300 ; mintemp<T -> neg_flag=1
|
|
1301 ; T<=mintemp -> neg_flag=0
|
|
1302 btfsc neg_flag
|
|
1303 return
|
|
1304 ;mintemp>=T
|
|
1305 movff temperature+0,mintemp+0
|
|
1306 movff temperature+1,mintemp+1
|
|
1307 return
|
|
1308
|
|
1309 set_dive_modes:
|
|
1310 bcf divemode2 ; Stop time
|
|
1311
|
|
1312 GETCUSTOM8 .0 ; loads dive_threshold in WREG
|
|
1313 movwf sub_a+0 ; dive_treshold is in cm
|
|
1314 clrf sub_a+1
|
|
1315
|
|
1316 movff rel_pressure+0,sub_b+0
|
|
1317 movff rel_pressure+1,sub_b+1
|
|
1318
|
|
1319 call sub16 ; sub_c = sub_a - sub_b
|
|
1320
|
|
1321 btfss neg_flag
|
|
1322 bra set_dive_modes2 ; too shallow (rel_pressure<dive_threshold)
|
|
1323
|
|
1324 btfsc realdive ; Dive longer than one minute?
|
|
1325 clrf timeout_counter
|
|
1326
|
|
1327 bsf divemode
|
|
1328 bsf divemode2 ; displayed divetime is running
|
|
1329 return
|
|
1330
|
|
1331 set_dive_modes2:
|
|
1332 btfss realdive ; dive longer then one minute?
|
|
1333 bcf divemode ; no -> this was no real dive
|
|
1334 return
|
|
1335
|
|
1336 set_powersafe:
|
|
1337 btfsc low_battery_state ; battery warning alread active?
|
|
1338 bra set_powersafe2 ; Yes, but is it still required?
|
|
1339 ; battery voltage in mV (value*256+Lowbyte=actual treshold)
|
|
1340 movlw d'12' ; 3,328V
|
|
1341 cpfsgt batt_voltage+1
|
|
1342 bra set_powersafe1
|
|
1343 return
|
|
1344
|
|
1345 set_powersafe1:
|
|
1346 movlw d'7' ; Type of Alarm (Battery Low)
|
|
1347 movwf AlarmType ; Copy to Alarm Register
|
|
1348 bsf event_occured ; Set Event Flag
|
|
1349 bsf low_battery_state ; set flag for battery warning
|
|
1350 return ; return
|
|
1351
|
|
1352 set_powersafe2:
|
|
1353 movlw d'13' ; 3,584V
|
|
1354 cpfsgt batt_voltage+1
|
|
1355 bra set_powersafe1 ; Still to low
|
|
1356 bcf low_battery_state ; clear flag for battery warning mode
|
|
1357 return
|
|
1358
|
|
1359 calc_average_depth:
|
|
1360 ; 1. Add new 2xdepth to the Sum of depths registers
|
|
1361 movff rel_pressure+0,b0_lo
|
|
1362 movff rel_pressure+1,b0_hi
|
|
1363
|
|
1364 movf b0_lo,w
|
|
1365 addwf average_depth_hold+0,F
|
|
1366 movf b0_hi,w
|
|
1367 addwfc average_depth_hold+1,F
|
|
1368 movlw d'0'
|
|
1369 addwfc average_depth_hold+2,F
|
|
1370 addwfc average_depth_hold+3,F ; Will work up to 9999mBar*60*60*24=863913600mBar
|
|
1371
|
|
1372 movf b0_lo,w
|
|
1373 addwf average_depth_hold+0,F
|
|
1374 movf b0_hi,w
|
|
1375 addwfc average_depth_hold+1,F
|
|
1376 movlw d'0'
|
|
1377 addwfc average_depth_hold+2,F
|
|
1378 addwfc average_depth_hold+3,F ; Will work up to 9999mBar*60*60*24=863913600mBar
|
|
1379
|
|
1380 ; 2. Compute Average Depth on base of average_divesecs:2
|
|
1381
|
|
1382 movff average_divesecs+0,xB+0
|
|
1383 movff average_divesecs+1,xB+1 ; Copy
|
|
1384 movff average_depth_hold+0,xC+0
|
|
1385 movff average_depth_hold+1,xC+1
|
|
1386 movff average_depth_hold+2,xC+2
|
|
1387 movff average_depth_hold+3,xC+3
|
|
1388
|
|
1389 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder
|
|
1390 movff xC+0,avr_rel_pressure+0
|
|
1391 movff xC+1,avr_rel_pressure+1
|
|
1392 return
|
|
1393
|
|
1394
|
|
1395 diveloop_boot:
|
|
1396 ostc_debug 'Q' ; Sends debug-information to screen if debugmode active
|
|
1397 clrf max_pressure+0 ; clear some variables
|
|
1398 clrf max_pressure+1
|
|
1399
|
|
1400 clrf avr_rel_pressure+0
|
|
1401 clrf avr_rel_pressure+1
|
|
1402
|
|
1403 call PLED_brightness_low
|
|
1404 read_int_eeprom d'90' ; Brightness offset? (Dim>0, Normal = 0)
|
|
1405 movlw d'0'
|
|
1406 cpfsgt EEDATA
|
|
1407 call PLED_brightness_full
|
|
1408
|
|
1409 clrf average_depth_hold+0
|
|
1410 clrf average_depth_hold+1
|
|
1411 clrf average_depth_hold+2
|
|
1412 clrf average_depth_hold+3 ; Clear average depth register
|
|
1413 movlw d'1'
|
|
1414 movwf average_divesecs+0
|
|
1415 clrf average_divesecs+1
|
|
1416
|
|
1417 movlw d'1'
|
|
1418 movwf apnoe_max_pressure+0
|
|
1419 clrf apnoe_max_pressure+1
|
|
1420 clrf apnoe_surface_mins
|
|
1421 clrf apnoe_surface_secs
|
|
1422 clrf apnoe_mins
|
|
1423 clrf apnoe_secs
|
|
1424 clrf divemins+0
|
|
1425 clrf divemins+1
|
|
1426 clrf divesecs
|
|
1427 clrf samplesecs
|
|
1428 clrf apnoe_timeout_counter ; timeout in minutes
|
|
1429 clrf timeout_counter ; takes care of the timeout
|
|
1430 clrf timeout_counter2 ; Here: counts to six, then store deco data and temperature
|
|
1431 clrf AlarmType ; Clear all alarms
|
|
1432 bcf event_occured ; clear flag
|
|
1433 bcf depth_greater_100m ; clear flag
|
|
1434 setf last_diluent ; to be displayed after first calculation (range: 0 to 100 [%])
|
|
1435 clrf char_last_pointer
|
3
|
1436 bcf dekostop_active
|
|
1437 bcf is_bailout ;=1: CC mode, but bailout active!
|
0
|
1438 call get_free_EEPROM_location ; get last position in external EEPROM, may be up to 2 secs!
|
|
1439
|
|
1440 movff last_surfpressure_30min+1,int_I_pres_surface+1 ; HIGH copy surfacepressure to deco routine
|
|
1441 movff last_surfpressure_30min+0,int_I_pres_surface+0 ; LOW copy surfacepressure to deco routine
|
|
1442 movff temperature+0,mintemp+0 ; Reset Min-Temp registers
|
|
1443 movff temperature+1,mintemp+1 ; Reset Min-Temp registers
|
|
1444
|
|
1445 clrf wait_temp ; Used to clear Bankx registers
|
|
1446 movff wait_temp,char_O_GF_low_pointer
|
|
1447 movff wait_temp,char_O_actual_pointer
|
|
1448 lfsr FSR0,0x250
|
|
1449 movlw 0x20
|
|
1450 movwf wait_temp
|
|
1451 clear_deco_lists: ; Clear Deco list
|
|
1452 clrf POSTINC0
|
|
1453 decfsz wait_temp,F
|
|
1454 bra clear_deco_lists
|
|
1455 lfsr FSR0,0x270
|
|
1456 movlw 0x20
|
|
1457 movwf wait_temp
|
|
1458 set_no_forced_stops: ; Init Deco list
|
|
1459 movlw 0x01
|
|
1460 movwf POSTINC0
|
|
1461 decfsz wait_temp,F
|
|
1462 bra set_no_forced_stops
|
|
1463 lfsr FSR0,0x290 ; clear int_O_calc_tissue_call_counter (DEBUG)
|
|
1464 clrf POSTINC0
|
|
1465 clrf POSTINC0
|
|
1466
|
|
1467 ; Load GF values into RAM
|
|
1468 GETCUSTOM8 d'32' ; GF low
|
|
1469 movff EEDATA,char_I_GF_Lo_percentage
|
|
1470 GETCUSTOM8 d'33' ; GF high
|
|
1471 movff EEDATA,char_I_GF_Hi_percentage
|
|
1472
|
|
1473 ; Start with active Stopwatch?
|
|
1474 bsf stopwatch_active
|
|
1475 GETCUSTOM8 d'41' ; =1: Start with active Stopwatch
|
|
1476 movwf lo
|
|
1477 movlw d'1'
|
|
1478 cpfseq lo ; CF41=1?
|
|
1479 bcf stopwatch_active ; No!
|
|
1480
|
|
1481 ; Init profile recording parameters
|
|
1482 GETCUSTOM8 d'20' ; sample rate
|
|
1483 movwf samplesecs_value ; to avoid EEPROM access in the ISR
|
|
1484 GETCUSTOM8 d'21'
|
|
1485 movwf divisor_temperature ; load divisors for profile storage
|
|
1486 GETCUSTOM8 d'22'
|
|
1487 movwf divisor_deco
|
|
1488 GETCUSTOM8 d'23'
|
|
1489 movwf divisor_tank
|
|
1490 GETCUSTOM8 d'24'
|
|
1491 movwf divisor_ppo2
|
|
1492 GETCUSTOM8 d'25'
|
|
1493 movwf divisor_deco_debug
|
|
1494 GETCUSTOM8 d'26'
|
|
1495 movwf divisor_nuy2
|
|
1496
|
|
1497 btfss FLAG_apnoe_mode ; In Apnoe mode?
|
|
1498 bra divemode1
|
|
1499 ; Overwrite some parameters in Apnoe mode....
|
|
1500 movlw d'1'
|
|
1501 movwf samplesecs_value ; to avoid EEPROM access in the ISR
|
|
1502
|
|
1503 divemode1:
|
|
1504 read_int_eeprom d'36' ; Read mix 1 ppO2
|
|
1505 btfsc FLAG_const_ppO2_mode
|
|
1506 movff EEDATA,char_I_const_ppO2 ; Set ppO2 setpoint if in ppO2 mode
|
|
1507
|
|
1508 call clear_LEDnofly ; Clear flags
|
|
1509 bcf low_battery_state ; clear flag for battery warning mode
|
|
1510 bcf header_stored
|
|
1511 bcf premenu
|
|
1512 bcf realdive
|
|
1513 bsf update_divetime ; set flag
|
|
1514 btfss simulatormode_active ; do not disable in simulator mode!
|
|
1515 call disable_rs232 ; Disable RS232 unless in external O2 Sensor mode
|
|
1516
|
|
1517 read_int_eeprom d'33' ; Read byte (stored in EEDATA)
|
|
1518 movff EEDATA,active_gas ; Read start gas (1-5)
|
|
1519
|
|
1520 ; Read Start Gas and configure char_I_He_ratio, char_I_O2_ratio and char_I_N2_ratio
|
|
1521 decf active_gas,W ; Gas 0-4
|
|
1522 mullw d'4'
|
|
1523 movf PRODL,W
|
|
1524 addlw d'7' ; = address for He ratio
|
|
1525 movwf EEADR
|
|
1526 call read_eeprom ; Read He ratio
|
|
1527 movff EEDATA,char_I_He_ratio ; And copy into hold register
|
|
1528 decf active_gas,W ; Gas 0-4
|
|
1529 mullw d'4'
|
|
1530 movf PRODL,W
|
|
1531 addlw d'6' ; = address for O2 ratio
|
|
1532 movwf EEADR
|
|
1533 call read_eeprom ; Read O2 ratio
|
|
1534 movff EEDATA, char_I_O2_ratio ; O2 ratio
|
|
1535 movff char_I_He_ratio, wait_temp ; copy into bank1 register
|
|
1536 bsf STATUS,C ; Borrow bit
|
|
1537 movlw d'100' ; 100%
|
|
1538 subfwb wait_temp,W ; minus He
|
|
1539 bsf STATUS,C ; Borrow bit
|
|
1540 subfwb EEDATA,F ; minus O2
|
|
1541 movff EEDATA, char_I_N2_ratio ; = N2!
|
|
1542
|
|
1543 ; New in 1.09 - DecoGas can be configured to achieve exact decompression proposal
|
|
1544 ; required variables
|
|
1545 ; These values are set when the OSTC is in decompression mode - will be done in routine "check_decogas"
|
|
1546 ; char_I_deco_gas_change; ; next gas change in meter
|
|
1547 ; char_I_deco_N2_ratio; ; next gas N2
|
|
1548 ; char_I_deco_He_ratio; ; next gas He
|
|
1549 clrf lo
|
|
1550 movff lo, char_I_deco_gas_change ; clear
|
|
1551 movff lo, char_I_deco_N2_ratio ; clear
|
|
1552 movff lo, char_I_deco_He_ratio ; clear
|
|
1553 bcf multi_gf_display ; Do not display the multi-gf table screen
|
|
1554 return |