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