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