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 ; routines for Surface mode
|
|
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com
|
|
21 ; written: 10/01/05
|
|
22 ; last updated: 080905
|
|
23 ; known bugs:
|
|
24 ; ToDo:
|
|
25
|
|
26 surfloop:
|
|
27 ; Boot tasks for all modes
|
|
28 call restart_set_modes_and_flags ; Sets decomode flags
|
|
29 clrf lo
|
|
30 movff lo,char_I_const_ppO2 ; reset to standard mode, OSTC assumes Air breathing at the surface!
|
|
31
|
|
32 call PLED_brightness_full ;max. brightness
|
|
33
|
|
34 call I2CReset
|
|
35 call enable_rs232
|
|
36 call PLED_boot
|
|
37 call PLED_serial ; Show OSTC serial and firmware version
|
|
38 call PLED_clock ; display time
|
|
39 call update_date ; display date
|
|
40 movff last_surfpressure_30min+0,int_I_pres_respiration+0 ; copy surface air pressure to deco routine
|
|
41 movff last_surfpressure_30min+1,int_I_pres_respiration+1 ; 30min old values
|
|
42 movff last_surfpressure_30min+0,int_I_pres_surface+0 ; copy surface air pressure to deco routine
|
|
43 movff last_surfpressure_30min+1,int_I_pres_surface+1 ; 30min old values
|
|
44
|
|
45 btfsc gauge_mode ; Ignore in gauge mode
|
|
46 bra surfloop1
|
|
47 btfsc FLAG_apnoe_mode ; Ignore in Apnoe mode
|
|
48 bra surfloop1
|
|
49
|
|
50 ; Startup tasks for decompression modes
|
43
|
51 call PLED_display_cns_surface ; Update surface CNS display (If allowed by CF15)
|
0
|
52 call PLED_desaturation_time ; display desaturation time
|
|
53 call PLED_nofly_time ; display nofly time
|
13
|
54
|
|
55 btfss pre_dive_screen ; Show predive screen
|
|
56 call PLED_tissue_saturation_graph ; no, display saturation graph
|
|
57 btfsc pre_dive_screen ; Show predive screen
|
|
58 call PLED_pre_dive_screen ; yes, display Pre-Dive Screen
|
|
59
|
0
|
60 call PLED_active_gas_surfmode ; Show start gas
|
|
61 call PLED_display_decotype_surface ; Show deco mode (ZH-L16, const. ppO2 or Multi-GF)
|
|
62
|
|
63 surfloop1:
|
|
64 btfss gauge_mode ; Display only in gauge mode
|
|
65 bra surfloop2
|
|
66 DISPLAYTEXT d'103' ; Gauge mode
|
|
67 surfloop2:
|
|
68 btfss FLAG_apnoe_mode ; Display only in Apnoe mode
|
|
69 bra surfloop3
|
|
70 DISPLAYTEXT d'116' ; Apnoe mode
|
|
71
|
|
72 surfloop3:
|
|
73 ; Startup tasks for all modes
|
|
74 clrf timeout_counter2
|
|
75 clrf timeout_counter3
|
|
76 bcf premenu ; clear premenu flag
|
|
77 bcf menubit ; clear menu flag
|
|
78 bcf pressure_refresh
|
|
79 clrf last_pressure+0
|
|
80 clrf last_pressure+1
|
|
81 clrf last_temperature+0
|
|
82 clrf last_temperature+1
|
|
83
|
|
84 movlw d'5'
|
|
85 movwf timeout_counter ; reload counter
|
|
86
|
21
|
87 bcf LED_blue
|
|
88 bcf LED_red
|
0
|
89 bcf simulatormode_active ; Quit simulator mode (if active)
|
|
90 bcf standalone_simulator ; Quit simulator mode (if active)
|
|
91 WIN_TOP .0
|
|
92 WIN_LEFT .0
|
|
93 WIN_FONT FT_SMALL
|
|
94 WIN_INVERT .0 ; Init new Wordprocessor
|
3
|
95 call PLED_standard_color
|
|
96
|
0
|
97 bcf switch_left
|
|
98 bcf switch_right
|
4
|
99 call PLED_active_gas_surfmode ; Show start gas / SetPoint
|
0
|
100 call PLED_custom_text ; Displays custom text
|
|
101 movlw d'1' ; next cf to check
|
|
102 movwf cf_checker_counter ;
|
|
103 ostc_debug 'G' ; Sends debug-information to screen if debugmode active
|
|
104 GETCUSTOM8 d'12' ; Desaturation multiplier %
|
|
105 movwf wait_temp
|
|
106 movff wait_temp,char_I_desaturation_multiplier
|
|
107 GETCUSTOM8 d'11' ; Saturation multiplier %
|
|
108 movwf wait_temp
|
|
109 movff wait_temp,char_I_saturation_multiplier
|
|
110 call deco_main_calc_desaturation_time; calculate desaturation time
|
|
111 movlb b'00000001' ; select ram bank 1
|
|
112 ostc_debug 'H' ; Sends debug-information to screen if debugmode active
|
|
113
|
|
114 call wait_switches ; Waits until switches are released, resets flag if button stays pressed!
|
|
115
|
|
116 surfloop_loop:
|
|
117 btfss onesecupdate ; do every second tasks?
|
|
118 bra surfloop_loop2 ; no, loop
|
|
119
|
|
120 btfss FLAG_const_ppO2_mode ; are we in const. ppO2 mode?
|
|
121 bra surfloop_loop1 ; No
|
|
122 ; One Second tasks for ppO2 modes
|
|
123
|
|
124 bra surfloop_loop1 ; Do not search for sensor in CC mode
|
|
125
|
|
126
|
|
127 surfloop_loop1:
|
|
128 ; One Second tasks for all modes
|
|
129 call PLED_clock ; update clock
|
|
130 call test_charger ; check if charger IC is active
|
|
131 call timeout_surfmode ; check timeout
|
|
132 call get_battery_voltage ; get battery voltage
|
|
133 call update_batt_voltage ; display battery voltage
|
|
134 call timeout_premenu ; timeout premenu
|
|
135 call set_leds_surfmode ; Sets Warning and No-Fly LEDs
|
|
136 call custom_functions_check_surfmode ; Checks CF functions and displays warning symbol if something critical is wrong
|
|
137 call PLED_display_decotype_surface ; Show deco mode
|
|
138 btfsc enter_error_sleep ; Enter Fatal Error Routine?
|
16
|
139 call fatal_error_sleep ; Yes (In Sleepmode_vxx.asm!)
|
0
|
140 bcf onesecupdate ; every second tasks done
|
|
141
|
|
142 surfloop_loop2:
|
|
143 ; Tasks approx. every 50ms for all modes
|
|
144 call test_switches_surfmode ; check switches
|
|
145
|
|
146 ; Sensor tasks for all modes
|
|
147 btfsc pressure_refresh ; new pressure available?
|
|
148 call update_surf_press ; display surface pressure
|
|
149 btfsc pressure_refresh ; new temperature available?
|
|
150 call PLED_temp_surfmode ; Displays temperature
|
|
151 btfsc pressure_refresh ; new pressure available?
|
|
152 call set_dive_modes ; tests if depth>threshold
|
|
153 bcf pressure_refresh ; until new pressure is available
|
|
154
|
|
155 ; One minute tasks for all modes
|
|
156 btfsc oneminupdate ; do every minute tasks
|
|
157 call update_surfloop60 ; yes, e.g. update time and date
|
|
158
|
|
159 ; Mode tasks
|
|
160 btfsc menubit ; Menu?
|
|
161 goto menu ; Menu!
|
|
162 btfsc divemode ; Divemode active?
|
|
163 goto diveloop ; Yes, switch into Divemode!
|
|
164 btfsc sleepmode ; Sleepmode active?
|
|
165 goto sleeploop ; Yes, switch into sleepmode!
|
|
166 ; Check for the different UART flags
|
|
167 btfsc dump_external_eeprom ; Start interface (dumps EEPROM BANK 0 + additional data)?
|
|
168 goto menu_interface ; Yes!
|
|
169 btfsc uart_settime ; Sync clock with PC?
|
|
170 goto sync_clock ; Yes!
|
|
171 btfsc internal_eeprom_write ; Access internal EEPROM BANK 0 via UART module
|
|
172 goto internal_eeprom_access_b0 ; Yes!
|
|
173 btfsc internal_eeprom_write2 ; Access internal EEPROM BANK 1 via UART module
|
|
174 goto internal_eeprom_access_b1 ; Yes!
|
|
175 btfsc uart_send_hash ; Send MD2 hash values
|
|
176 goto send_md2_hash ; Yes!
|
|
177 btfsc uart_send_int_eeprom ; Send internal EEPROM BANK 0
|
|
178 goto send_int_eeprom_b0 ; Yes!
|
|
179 btfsc uart_reset_decodata ; Reset Deco Data?
|
|
180 goto reset_decodata ; Yes!
|
|
181 btfsc uart_send_int_eeprom2 ; Send internal EEPROM BANK 1
|
|
182 goto send_int_eeprom_b1 ; Yes!
|
|
183 btfsc uart_store_tissue_data ; Store tissue data?`
|
|
184 goto uart_store_tissues ; Yes!
|
|
185
|
|
186 bra surfloop_loop ; loop surfacemode
|
|
187
|
|
188
|
|
189 update_surfloop60:
|
|
190 ; One minute tasks for all modes
|
4
|
191 ; call PLED_active_gas_surfmode ; Show start gas / SetPoint
|
0
|
192 call update_date ; and date in divemode
|
|
193 call calc_deko_surfmode ; calculate desaturation every minute
|
|
194 call check_temp_extrema ; check for new temperature extremas
|
|
195 call PLED_custom_text ; Displays custom text
|
|
196 call calc_surface_interval ; Increases Surface-Interval time
|
|
197
|
|
198 btfsc gauge_mode ; Ignore in gauge mode
|
|
199 bra update_surfloop60_2
|
|
200 btfsc FLAG_apnoe_mode ; Ignore in Apnoe mode
|
|
201 bra update_surfloop60_2
|
|
202
|
|
203 ; One Minute tasks for deco modes
|
43
|
204 call PLED_display_cns_surface ; Update surface CNS display (If allowed by CF15)
|
0
|
205 call PLED_nofly_time ; display nofly time
|
|
206 call PLED_desaturation_time ; display desaturation time
|
13
|
207 btfsc premenu ; Not when "Menu?" is displayed!
|
|
208 bra update_surfloop60_2
|
|
209
|
|
210 btfss pre_dive_screen ; Show predive screen
|
|
211 call PLED_tissue_saturation_graph ; no, display saturation graph
|
|
212 btfsc pre_dive_screen ; Show predive screen
|
|
213 call PLED_pre_dive_screen ; yes, display Pre-Dive Screen
|
0
|
214
|
|
215 update_surfloop60_2:
|
|
216 call nofly_timeout60 ; checks if nofly time is > 0
|
|
217 bcf oneminupdate
|
|
218 return
|
|
219
|
|
220 nofly_timeout60:
|
|
221 bsf nofly_active ; Set flag
|
|
222 movlw d'1'
|
|
223 subwf nofly_time+0,F
|
|
224 movlw d'0'
|
|
225 subwfb nofly_time+1,F ; reduce by one
|
|
226 tstfsz nofly_time+0 ; =0?
|
|
227 return
|
|
228 tstfsz nofly_time+1 ; =0?
|
|
229 return
|
|
230 bcf nofly_active ; Clear flag
|
21
|
231 bcf LED_blue
|
0
|
232 incf nofly_time+0,F ; =1
|
|
233 return
|
|
234
|
|
235 calc_surface_interval:
|
|
236 movff int_O_desaturation_time+0,lo ; divide by 60...
|
|
237 movff int_O_desaturation_time+1,hi
|
|
238 tstfsz lo ;=0?
|
|
239 bra calc_surface_interval2 ; No
|
|
240 tstfsz hi ;=0?
|
|
241 bra calc_surface_interval2 ; No
|
|
242 clrf surface_interval+0
|
|
243 clrf surface_interval+1 ; Clear surface interval timer
|
|
244 return
|
|
245
|
|
246 calc_surface_interval2: ; Increase surface interval timer
|
|
247 movlw d'1'
|
|
248 addwf surface_interval+0,F
|
|
249 movlw d'0'
|
|
250 addwfc surface_interval+1,F
|
|
251 return
|
|
252
|
|
253 set_leds_surfmode:
|
|
254 btfsc nofly_active
|
21
|
255 btg LED_blue
|
0
|
256 return
|
|
257
|
|
258 calc_deko_surfmode:
|
21
|
259 bsf LED_red
|
0
|
260 ostc_debug 'I' ; Sends debug-information to screen if debugmode active
|
|
261
|
|
262 movff last_surfpressure+0,int_I_pres_surface+0 ; copy surface air pressure to deco routine
|
|
263 movff last_surfpressure+1,int_I_pres_surface+1
|
|
264 clrf wait_temp ; Use as buffer
|
|
265 movff wait_temp,char_I_He_ratio ; No He at the Surface
|
|
266 movlw d'79' ; 79% N2
|
|
267 movwf wait_temp ; Use as buffer
|
|
268 movff wait_temp,char_I_N2_ratio ; No He at the Surface
|
|
269
|
|
270 movff amb_pressure+0,int_I_pres_respiration+0 ; copy surface air pressure to deco routine
|
|
271 movff amb_pressure+1,int_I_pres_respiration+1
|
|
272 GETCUSTOM8 d'11' ; Saturation multiplier %
|
|
273 movwf wait_temp
|
|
274 movff wait_temp,char_I_saturation_multiplier
|
|
275 GETCUSTOM8 d'12' ; Desaturation multiplier %
|
|
276 movwf wait_temp
|
|
277 movff wait_temp,char_I_desaturation_multiplier
|
|
278
|
|
279 call deco_main_calc_wo_deco_step_1_m ; calculate deco in surface mode
|
|
280 movlb b'00000001' ; select ram bank 1
|
|
281 ostc_debug 'J' ; Sends debug-information to screen if debugmode active
|
21
|
282 bcf LED_red
|
0
|
283 return
|
|
284
|
|
285
|
|
286 test_charger:
|
|
287 bcf TRISC,1 ; CHRG_OUT output
|
|
288 bsf CHRG_OUT
|
|
289
|
|
290 bcf cc_active ; Constant Current mode active?
|
|
291 btfss CHRG_IN ; If CHRG_IN=0 -> CC active
|
|
292 bsf cc_active ; Constant Current mode Active!
|
|
293
|
|
294 bcf CHRG_OUT
|
|
295 bsf TRISC,1 ; CHRG_OUT high impedance
|
|
296
|
|
297 WAIT10US d'10'
|
|
298
|
|
299 bcf cv_active ; Constant Voltage mode Active?
|
|
300 btfss CHRG_IN ; If CHRG_IN=0 -> CV active
|
|
301 bsf cv_active ; Constant Voltage mode active!
|
|
302
|
|
303 bcf TRISC,1 ; CHRG_OUT output
|
|
304 bcf CHRG_OUT
|
|
305
|
|
306 btfsc cc_active
|
|
307 bra show_cc_active
|
|
308 btfsc cv_active
|
|
309 bra show_cv_active
|
|
310
|
|
311 bsf TRISC,1 ; CHRG_OUT high impedance
|
|
312
|
|
313 ; Charger inactive or ready
|
|
314 btfss charge_done ; charge done?
|
|
315 bra test_charger2 ; No, add incomplete cycle!
|
|
316
|
|
317 ; Yes, store all data for complete cycle
|
|
318 bcf charge_started ; Clear flag
|
|
319 bcf charge_done ; Clear flag
|
|
320 ; Store incomplete/total cycles
|
|
321 read_int_eeprom d'50' ; Read byte (stored in EEDATA)
|
|
322 movff EEDATA,temp1 ; Low byte
|
|
323 read_int_eeprom d'51' ; Read byte (stored in EEDATA)
|
|
324 movff EEDATA,temp2 ; high byte
|
|
325 bcf STATUS,C
|
|
326 movlw d'1'
|
|
327 addwf temp1
|
|
328 movlw d'0'
|
|
329 addwfc temp2
|
|
330 movff temp1,EEDATA
|
|
331 write_int_eeprom d'50' ; write byte stored in EEDATA
|
|
332 movff temp2,EEDATA
|
|
333 write_int_eeprom d'51' ; write byte stored in EEDATA
|
|
334
|
|
335 ; Store complete cycles
|
|
336 read_int_eeprom d'52' ; Read byte (stored in EEDATA)
|
|
337 movff EEDATA,temp1 ; Low byte
|
|
338 read_int_eeprom d'53' ; Read byte (stored in EEDATA)
|
|
339 movff EEDATA,temp2 ; high byte
|
|
340 bcf STATUS,C
|
|
341 movlw d'1'
|
|
342 addwf temp1
|
|
343 movlw d'0'
|
|
344 addwfc temp2
|
|
345 movff temp1,EEDATA
|
|
346 write_int_eeprom d'52' ; write byte stored in EEDATA
|
|
347 movff temp2,EEDATA
|
|
348 write_int_eeprom d'53' ; write byte stored in EEDATA
|
|
349 ; Store date of complete cycle
|
|
350 movff month,EEDATA
|
|
351 write_int_eeprom d'47'
|
|
352 movff day,EEDATA
|
|
353 write_int_eeprom d'48'
|
|
354 movff year,EEDATA
|
|
355 write_int_eeprom d'49'
|
|
356
|
|
357 return
|
|
358
|
|
359 test_charger2:
|
|
360 btfss charge_started ; Did the charger ever start?
|
|
361 return ; No, quit!
|
|
362
|
|
363 bcf charge_started ; Clear flag
|
|
364 ; Store incomplete/total cycles
|
|
365 read_int_eeprom d'50' ; Read byte (stored in EEDATA)
|
|
366 movff EEDATA,temp1 ; Low byte
|
|
367 read_int_eeprom d'51' ; Read byte (stored in EEDATA)
|
|
368 movff EEDATA,temp2 ; high byte
|
|
369 bcf STATUS,C
|
|
370 movlw d'1'
|
|
371 addwf temp1
|
|
372 movlw d'0'
|
|
373 addwfc temp2
|
|
374 movff temp1,EEDATA
|
|
375 write_int_eeprom d'50' ; write byte stored in EEDATA
|
|
376 movff temp2,EEDATA
|
|
377 write_int_eeprom d'51' ; write byte stored in EEDATA
|
|
378 return
|
|
379
|
|
380 show_cv_active: ; CV mode
|
21
|
381 bsf LED_red
|
0
|
382 WAITMS d'100'
|
21
|
383 bcf LED_red
|
0
|
384 WAITMS d'100'
|
21
|
385 bsf LED_red
|
0
|
386 bsf charge_done ; Charge cycle finished
|
|
387 return
|
|
388
|
|
389 show_cc_active: ; CC mode
|
21
|
390 bsf LED_red
|
0
|
391 bsf charge_started ; Charger started in CC mode
|
|
392 bcf charge_done ; Charge cycle not finished
|
|
393 return
|
|
394
|
|
395
|
|
396 timeout_premenu:
|
|
397 btfss premenu ; is "Menu?" displayed?
|
|
398 return ; No
|
|
399 incf timeout_counter3,F ; Yes...
|
|
400 GETCUSTOM8 d'4' ; loads premenu_timeout into WREG
|
|
401 cpfsgt timeout_counter3 ; ... longer then premenu_timeout
|
|
402 return ; No!
|
|
403 bcf premenu ; Yes, so clear "Menu?" and clear pre_menu bit
|
|
404
|
|
405 call PLED_topline_box_clear ; Clears Bar at the top
|
|
406
|
|
407 btfsc gauge_mode
|
|
408 bra timeout_premenu2 ; Skip in Gauge mode
|
|
409 btfsc FLAG_apnoe_mode
|
|
410 bra timeout_premenu2 ; Skip in Apnoe mode
|
13
|
411
|
|
412 btfss pre_dive_screen ; Show predive screen
|
|
413 call PLED_tissue_saturation_graph ; no, display saturation graph
|
|
414 btfsc pre_dive_screen ; Show predive screen
|
|
415 call PLED_pre_dive_screen ; yes, display Pre-Dive Screen
|
|
416
|
0
|
417 timeout_premenu2:
|
|
418 call update_surf_press ; rewrite serial number
|
|
419 call PLED_serial ; rewrite serial number
|
|
420 clrf timeout_counter3 ; Also clear timeout
|
|
421 bcf switch_left ; and debounce switches
|
|
422 bcf switch_right
|
|
423 return
|
|
424
|
|
425 test_switches_surfmode: ; checks switches in surfacemode
|
|
426 btfsc switch_left
|
|
427 bra test_switches_surfmode2
|
|
428 btfsc switch_right
|
|
429 bra test_switches_surfmode3
|
|
430
|
|
431 ; No button press, reset timer0
|
|
432 bcf T0CON,TMR0ON ; Stop Timer 0
|
|
433 bcf INTCON,TMR0IF ; Clear flag
|
|
434 clrf TMR0H
|
|
435 clrf TMR0L
|
|
436 bcf INTCON,INT0IF ; Clear flag
|
|
437 bcf INTCON3,INT1IF ; Clear flag
|
|
438 return
|
|
439
|
|
440 test_switches_surfmode3:
|
|
441 bcf switch_right
|
|
442 call PLED_topline_box ; Write a filled bar at the top
|
|
443 WIN_INVERT .1 ; Init new Wordprocessor
|
|
444 DISPLAYTEXT .4 ;Menu?
|
|
445 WIN_INVERT .0 ; Init new Wordprocessor
|
|
446 bsf premenu
|
|
447 clrf timeout_counter2
|
|
448 return
|
|
449
|
|
450 test_switches_surfmode2:
|
|
451 bcf switch_left
|
|
452 btfss premenu
|
13
|
453 bra test_switches_surfmode4
|
0
|
454 bsf menubit ; Enter Menu!
|
|
455 return
|
|
456
|
13
|
457 test_switches_surfmode4:
|
|
458 btg pre_dive_screen
|
0
|
459
|
13
|
460 btfss pre_dive_screen ; Show predive screen
|
|
461 call PLED_tissue_saturation_graph ; no, display saturation graph
|
|
462 btfsc pre_dive_screen ; Show predive screen
|
|
463 call PLED_pre_dive_screen ; yes, display Pre-Dive Screen
|
|
464
|
|
465 return
|
0
|
466
|
|
467 timeout_surfmode:
|
|
468 incf timeout_counter2,F ; increase timeout counter
|
|
469 GETCUSTOM8 d'3' ; loads surfloop_timeout into WREG
|
|
470 addlw d'5' ; adds five seconds in case timout=zero!
|
|
471 btfsc STATUS,C ; > 255?
|
|
472 movlw d'255' ; Set to 255...
|
|
473 decf WREG,F ; Limit to 254
|
|
474 cpfsgt timeout_counter2 ; Compare with timeout_counter2
|
|
475 return ; return, no timeout
|
|
476 bsf sleepmode ; Set Flag
|
|
477 return ; Return
|