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