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