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