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