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