Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/start.asm @ 730:ae641bcb0d02
store a bailout event in the logbook
author | heinrichsweikamp |
---|---|
date | Sun, 16 Jun 2013 16:09:02 +0200 |
parents | 4452837aff37 |
children | b064dd9c9899 |
rev | line source |
---|---|
0 | 1 ; OSTC - diving computer code |
2 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
3 | |
4 ; This program is free software: you can redistribute it and/or modify | |
5 ; it under the terms of the GNU General Public License as published by | |
6 ; the Free Software Foundation, either version 3 of the License, or | |
7 ; (at your option) any later version. | |
8 | |
9 ; This program is distributed in the hope that it will be useful, | |
10 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 ; GNU General Public License for more details. | |
13 | |
14 ; You should have received a copy of the GNU General Public License | |
15 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | |
17 | |
18 ; Start and init | |
19 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
20 ; written: 10/13/04 | |
21 ; last updated: 06/24/08 | |
22 ; known bugs: | |
23 ; ToDo: | |
24 | |
25 start: | |
26 movlb b'00000001' ; ram bank 1 selected | |
521 | 27 movff STKPTR,temp10 ; Save stack pointer, for crash reports. |
235 | 28 clrf temp10+1 |
0 | 29 call init |
30 btfsc divemode ; Reset from Divemode? | |
681 | 31 call DISP_resetdebugger ; Yes! Something went wrong, show reset informations |
306 | 32 start3: |
0 | 33 clrf STKPTR ; Clear Stackpointer |
359 | 34 lfsr FSR0,year+1 ; Clear rambank 1-9, do not delete RTC registers |
0 | 35 clear_rambank: |
36 clrf POSTINC0 | |
37 movlw 0x0A | |
38 cpfseq FSR0H ; Bank 9 done? | |
39 bra clear_rambank ; clear... | |
40 | |
41 ; Defaults for RTC | |
42 call disable_rs232 ; disable UART module | |
43 call RTCinit ; reset RTC | |
44 | |
45 ; Air pressure compensation after reset | |
46 call get_calibration_data ; Get calibration data from pressure sensor | |
714 | 47 banksel flag5 |
713 | 48 bcf no_sensor_int ; Enable sensor interrupt |
0 | 49 bcf pressure_refresh |
50 wait_start_pressure: | |
51 btfss pressure_refresh ; Air pressure compensation | |
52 bra wait_start_pressure | |
53 | |
54 clrf rel_pressure+0 | |
55 clrf rel_pressure+1 | |
56 clrf surface_interval+0 | |
57 clrf surface_interval+1 | |
58 | |
59 bsf sleepmode ; Routine only works in sleepmode... | |
60 call pressuretest_sleep_fast ; Gets pressure without averaging (faster!) | |
61 bcf sleepmode ; Normal mode again | |
233 | 62 |
521 | 63 ; Extra power-up reset (JeanDo emulator) |
64 Ifdef TESTING | |
65 call reset_gases | |
66 call reset_all_cf | |
67 call reset_external_eeprom | |
68 | |
69 movlw LOW(.1000) | |
70 movwf amb_pressure+0 | |
71 movlw HIGH(.1000) | |
72 movwf amb_pressure+1 | |
73 Endif | |
74 | |
75 ; Get real pressure (if not in emulator mode) | |
76 Ifndef TESTING | |
507 | 77 SAFE_2BYTE_COPY amb_pressure_avg, amb_pressure ; copy for compatibility |
78 Endif | |
79 | |
80 movff amb_pressure+0,last_surfpressure+0 | |
81 movff amb_pressure+1,last_surfpressure+1 | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
82 movff last_surfpressure+0,last_surfpressure_15min+0 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
83 movff last_surfpressure+1,last_surfpressure_15min+1 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
84 movff last_surfpressure+0,last_surfpressure_30min+0 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
85 movff last_surfpressure+1,last_surfpressure_30min+1 ; Rests all airpressure registers |
0 | 86 |
87 ; reset deco data | |
236 | 88 ostc_debug '0' ; Sends debug-information to screen if debugmode active |
89 | |
0 | 90 movlw d'79' ; 79% N2 |
197 | 91 movff WREG,char_I_N2_ratio ; No He at the Surface |
236 | 92 clrf WREG ; Use as buffer |
93 movff WREG,char_I_He_ratio ; No He at the Surface | |
94 movff WREG,char_I_step_is_1min ; 2 second deco mode | |
95 GETCUSTOM8 d'11' ; Saturation multiplier % | |
96 movff WREG,char_I_saturation_multiplier | |
97 GETCUSTOM8 d'12' ; Desaturation multiplier % | |
98 movff WREG,char_I_desaturation_multiplier | |
507 | 99 movff amb_pressure+0,int_I_pres_respiration+0 ; copy for deco routine |
100 movff amb_pressure+1,int_I_pres_respiration+1 | |
101 movff int_I_pres_respiration+0,int_I_pres_surface+0 ; copy for desat routine | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
102 movff int_I_pres_respiration+1,int_I_pres_surface+1 |
0 | 103 |
513 | 104 call deco_clear_tissue |
105 movlb b'00000001' ; select ram bank 1 | |
106 | |
508
b595569e4bcc
BUGFIX char_I_(N2_ratio/He_ratio) array not inited at boot time
JeanDo
parents:
507
diff
changeset
|
107 call divemode_check_decogases ; Setup N2/He ratio array |
520
acf4776eec08
BUGFIX bank1 error, deco_calc_wo_deco done twice in start routine.
JeanDo
parents:
513
diff
changeset
|
108 |
acf4776eec08
BUGFIX bank1 error, deco_calc_wo_deco done twice in start routine.
JeanDo
parents:
513
diff
changeset
|
109 call calc_deko_surfmode ; calculate desaturation for one minute |
acf4776eec08
BUGFIX bank1 error, deco_calc_wo_deco done twice in start routine.
JeanDo
parents:
513
diff
changeset
|
110 |
116 | 111 call deco_calc_desaturation_time ; calculate desaturation time |
112 call deco_clear_CNS_fraction ; clear CNS | |
520
acf4776eec08
BUGFIX bank1 error, deco_calc_wo_deco done twice in start routine.
JeanDo
parents:
513
diff
changeset
|
113 movlb b'00000001' ; select ram bank 1 |
acf4776eec08
BUGFIX bank1 error, deco_calc_wo_deco done twice in start routine.
JeanDo
parents:
513
diff
changeset
|
114 |
412 | 115 clrf nofly_time+0 ; Reset NoFly |
116 clrf nofly_time+1 ; Reset NoFly | |
117 bcf nofly_active ; Clear flag | |
0 | 118 |
119 ; check firmware and reset Custom Functions after an update | |
384
904863f96582
Work-Around for "Reset all" overwriting 0x00 to 0x04 in EEPROM Bank1
heinrichsweikamp
parents:
380
diff
changeset
|
120 movlw d'1' |
0 | 121 movwf EEADR |
384
904863f96582
Work-Around for "Reset all" overwriting 0x00 to 0x04 in EEPROM Bank1
heinrichsweikamp
parents:
380
diff
changeset
|
122 movlw d'1' |
0 | 123 movwf EEADRH |
124 call read_eeprom ; read current version x | |
125 movff EEDATA,temp1 | |
126 incf EEADR,F ; set to 0x102 | |
127 call read_eeprom ; read current version y | |
128 movff EEDATA,temp2 | |
129 clrf EEADRH ; Reset EEADRH | |
130 | |
131 movlw softwareversion_x | |
132 cpfseq temp1 ; compare version x | |
133 bra check_firmware_new ; is not equal -> reset CF and store new version in EEPROM | |
134 | |
135 movlw softwareversion_y | |
136 cpfseq temp2 ; compare version y | |
137 bra check_firmware_new ; is not equal -> reset CF and store new version in EEPROM | |
138 bra restart ; x and y are equal -> do not reset cf | |
139 | |
140 check_firmware_new: | |
384
904863f96582
Work-Around for "Reset all" overwriting 0x00 to 0x04 in EEPROM Bank1
heinrichsweikamp
parents:
380
diff
changeset
|
141 movlw d'1' ; store current version in EEPROM |
0 | 142 movwf EEADR |
384
904863f96582
Work-Around for "Reset all" overwriting 0x00 to 0x04 in EEPROM Bank1
heinrichsweikamp
parents:
380
diff
changeset
|
143 movlw d'1' |
0 | 144 movwf EEADRH |
145 movlw softwareversion_x | |
146 movwf EEDATA | |
147 call write_eeprom ; write version x | |
148 incf EEADR,F ; set to 0x102 | |
149 movlw softwareversion_y | |
150 movwf EEDATA | |
151 call write_eeprom ; write version y | |
152 clrf EEADRH ; Reset EEADRH | |
392 | 153 |
500 | 154 ; After update resets |
155 ; Reset brightness to ECO | |
578 | 156 movlw LOW 0x103 |
500 | 157 movwf EEADR |
578 | 158 movlw HIGH 0x103 |
681 | 159 movwf EEADRH ; DISPLAY brightness (=0: Eco, =1: High) |
500 | 160 movlw .0 |
161 movwf EEDATA | |
162 call write_eeprom ; write byte | |
649 | 163 clrf EEADRH ; Reset EEADRH |
164 | |
0 | 165 restart: |
720 | 166 ; check for time/date vault |
167 movlw .1 | |
168 movwf EEADRH | |
169 read_int_eeprom .5 | |
170 movlw 0xAA | |
171 cpfseq EEDATA ; 0xAA in EEPROM Bank1, Byte 5? | |
172 bra restart0 ; No | |
173 | |
174 movlw 0x00 | |
175 movwf EEDATA | |
176 write_int_eeprom d'5' ; clear flag | |
177 read_int_eeprom .6 | |
178 movff EEDATA,year | |
179 read_int_eeprom .7 | |
180 movff EEDATA,month | |
181 read_int_eeprom .8 | |
182 movff EEDATA,day | |
183 read_int_eeprom .9 | |
184 movff EEDATA,hours | |
185 read_int_eeprom .10 | |
186 movff EEDATA,mins | |
187 read_int_eeprom .11 | |
188 movff EEDATA,secs | |
189 call RTCinit ; Check limits | |
190 restart0: | |
191 clrf EEADRH | |
390 | 192 movlw b'00000011' |
193 movwf T3CON ; Timer3 with 32768Hz clock running | |
194 clrf TMR3L | |
537 | 195 nop |
390 | 196 clrf TMR3H |
21 | 197 bcf LED_red |
198 bcf LED_blue ; all LEDs off | |
43 | 199 GETCUSTOM8 d'48' ; time correction value |
200 movff WREG, time_correction_value ; store in Bank0 register | |
15 | 201 |
202 clrf flag1 ; clear all flags | |
203 clrf flag2 | |
204 clrf flag3 | |
205 clrf flag4 | |
206 clrf flag5 | |
207 clrf flag6 | |
208 clrf flag7 | |
209 clrf flag8 | |
210 clrf flag9 | |
211 clrf flag10 | |
212 clrf flag11 | |
213 clrf flag12 | |
214 clrf flag13 | |
215 clrf flag14 | |
216 clrf flag15 | |
730 | 217 clrf flag16 |
153 | 218 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
219 ; Should we set win_flip_screen ? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
220 bsf flag1,0 ; Precondition to yes |
153 | 221 clrf EEADRH ; Reset EEADRH |
222 read_int_eeprom d'1' | |
223 movlw .7 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
224 cpfsgt EEDATA ; serial > 2048 (Mk2n hardware) ? |
153 | 225 bcf flag1,0 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
226 incf EEDATA,W ; serial == 65535 (emulation) ? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
227 btfsc STATUS,Z |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
228 bcf flag1,0 |
153 | 229 movff flag1,win_flags ; store in Bank0 register |
230 clrf flag1 ; Clear flag1 (again) | |
239 | 231 |
232 ; Select high altitude (Fly) mode? | |
233 movff last_surfpressure_30min+0,sub_b+0 | |
234 movff last_surfpressure_30min+1,sub_b+1 | |
235 movlw HIGH d'880' | |
236 movwf sub_a+1 | |
237 movlw LOW d'880' ; Hard-wired 880mBar | |
238 movwf sub_a+0 | |
239 call sub16 ; sub_c = sub_a - sub_b | |
240 btfss neg_flag ; Result negative (Ambient>880mBar)? | |
241 bsf high_altitude_mode ; No, Set Flag! | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
242 |
142 | 243 call gassetup_sort_gaslist ; Sorts Gaslist according to change depth |
0 | 244 WIN_TOP .0 |
245 WIN_LEFT .0 | |
246 WIN_FONT FT_SMALL | |
247 WIN_INVERT .0 ; Init new Wordprocessor | |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
248 setf WREG |
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
249 movff WREG,win_color1 ; Beware: win_color1 is bank0, and we are bank1 currently |
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
250 movff WREG,win_color2 |
0 | 251 call I2CReset ; Just in Case any I2C device blocks the Bus |
252 movff last_surfpressure_30min+0,last_surfpressure+0 ; Use 30min old airpressure | |
253 movff last_surfpressure_30min+1,last_surfpressure+1 ; Use 30min old airpressure | |
254 | |
255 ; Check if new CF were added in the last firmware version | |
256 clrf EEADRH | |
257 read_int_eeprom d'92' ; Read number of CF used in this firmware | |
258 movlw max_custom_number ; Defined in definitions.asm | |
259 cpfseq EEDATA ; Compare with last version | |
605 | 260 bra restart1 ; New CF, show warning and store new number |
261 bra restart2 ; No new CF, continue with boot | |
262 | |
263 restart1: | |
622 | 264 ; Reset all CF and Gases |
265 call reset_gases | |
677
683e7d821678
Set CF17 (ppo2_warning_low) low level to 0.16bar
heinrichsweikamp
parents:
668
diff
changeset
|
266 ; call reset_all_cf |
605 | 267 ; Show info screen |
681 | 268 call DISPLAY_boot ; DISP boot (Incl. Clear Screen!) |
605 | 269 rcall display_new_cf_installed; Show info screen |
0 | 270 ; Save new number of current CF count |
271 movlw max_custom_number ; Defined in definitions.asm | |
272 movwf EEDATA | |
273 write_int_eeprom d'92' ; Store number of CF used in this firmware | |
274 | |
605 | 275 restart2: |
0 | 276 ; Set Debug mode? |
277 read_int_eeprom d'39' | |
278 bsf debug_mode | |
279 movlw d'1' | |
280 cpfseq EEDATA | |
281 bcf debug_mode ; clear flag if <> 1 | |
282 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
283 ; Check if logbook has been converted already (Internal EEPROM 0x100=0xAA) |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
284 movlw LOW 0x100 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
285 movwf EEADR |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
286 movlw HIGH 0x100 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
287 movwf EEADRH |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
288 call read_eeprom ; read byte |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
289 movlw 0xAA |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
290 cpfseq EEDATA ; is 0xAA already? |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
291 call logbook_convert_64k ; No, convert now (And write 0xAA to internal EEPROM 0x100) |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
292 |
681 | 293 ; Set DISPLAY brightness flag |
578 | 294 movlw LOW 0x103 |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
493
diff
changeset
|
295 movwf EEADR |
578 | 296 movlw HIGH 0x103 |
681 | 297 movwf EEADRH ; DISPLAY brightness (=0: Eco, =1: High) |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
493
diff
changeset
|
298 call read_eeprom ; read byte |
681 | 299 bcf DISPLAY_brightness_high ; Eco mode |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
493
diff
changeset
|
300 movlw .0 |
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
493
diff
changeset
|
301 cpfseq EEDATA ; High? |
681 | 302 bsf DISPLAY_brightness_high ; Yes! |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
493
diff
changeset
|
303 |
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
493
diff
changeset
|
304 clrf EEADRH ; Reset EEADRH |
0 | 305 goto surfloop ; Jump to Surfaceloop! |
306 | |
307 | |
308 display_new_cf_installed: | |
681 | 309 call DISP_new_cf_warning ; Display new CF warning screen |
0 | 310 movlw d'20' ; timeout for warning screen |
311 bra startup_screen3a ; Will RETURN after timeout or button press | |
197 | 312 |
313 ;============================================================================= | |
314 ; Setup all flags and parameters for divemode and simulator computations. | |
315 ; | |
316 restart_set_modes_and_flags: ; "Call"ed from divemode, as well! | |
0 | 317 bcf gauge_mode |
318 bcf FLAG_const_ppO2_mode | |
319 bcf FLAG_apnoe_mode | |
45 | 320 |
321 ; Pre-load modes for OC, GF 90/90 and no Aponoe or Gauge. | |
197 | 322 bcf no_deco_customviews ; Clear no-deco-mode-flag |
45 | 323 movlw d'0' |
469 | 324 movff WREG,char_I_deco_model ; ZH-L16 |
45 | 325 ; Load GF values into RAM |
326 movlw d'90' | |
197 | 327 movff WREG,char_I_GF_Low_percentage |
328 movff WREG,char_I_GF_High_percentage ; Set to 90/90... | |
0 | 329 clrf EEADRH |
197 | 330 read_int_eeprom d'34' ; Read deco data |
331 movlw d'1' ; Gauge mode | |
0 | 332 cpfseq EEDATA |
197 | 333 bra restart_3_test_ppO2_mode ; check for ppO2 mode |
334 bsf gauge_mode ; Set flag for gauge mode | |
335 bsf no_deco_customviews ; Set no-deco-mode-flag | |
336 return ; start in Surfacemode | |
0 | 337 restart_3_test_ppO2_mode: |
197 | 338 movlw d'2' ; const ppO2 mode |
0 | 339 cpfseq EEDATA |
197 | 340 bra restart_3_test_apnoe_mode; check for apnoe mode |
341 bsf FLAG_const_ppO2_mode ; Set flag for ppO2 mode | |
342 return ; start in Surfacemode | |
0 | 343 restart_3_test_apnoe_mode: |
197 | 344 movlw d'3' ; Apnoe mode |
0 | 345 cpfseq EEDATA |
197 | 346 bra restart_4_test_gf_mode ; check for GF OC mode |
347 bsf FLAG_apnoe_mode ; Set flag for Apnoe Mode | |
348 bsf no_deco_customviews ; Set no-deco-mode-flag | |
349 return ; start in Surfacemode | |
0 | 350 restart_4_test_gf_mode: |
197 | 351 movlw d'4' ; GF OC mode |
0 | 352 cpfseq EEDATA |
197 | 353 bra restart_5_test_gfO2_mode ; check for GF CC mode |
0 | 354 movlw d'1' |
197 | 355 movff WREG,char_I_deco_model ; Set Flagbyte for GF method |
45 | 356 ; Load GF values into RAM |
667 | 357 rcall restart_load_gf |
197 | 358 return ; start in Surfacemode |
0 | 359 restart_5_test_gfO2_mode: |
197 | 360 movlw d'5' ; GF CC mode |
0 | 361 cpfseq EEDATA |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
362 bra restart_5_test_pSCR_mode ; check for pSCR-GF |
197 | 363 bsf FLAG_const_ppO2_mode ; Set flag for ppO2 mode |
0 | 364 movlw d'1' |
197 | 365 movff WREG,char_I_deco_model ; Set Flagbyte for GF method |
137 | 366 ; Load GF values into RAM |
667 | 367 rcall restart_load_gf |
197 | 368 return ; start in Surfacemode |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
369 restart_5_test_pSCR_mode: |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
370 movlw d'6' ; pSCR-GF |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
371 cpfseq EEDATA |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
372 return ; start in Surfacemode |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
373 bcf FLAG_const_ppO2_mode ; Clear flag for ppO2 mode |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
374 movlw d'1' |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
375 movff WREG,char_I_deco_model ; Set Flagbyte for GF method |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
376 ; Load GF values into RAM |
667 | 377 rcall restart_load_gf |
378 return ; start in Surfacemode | |
379 | |
380 restart_load_gf: | |
668 | 381 btfsc use_aGF |
667 | 382 bra restart_load_gf2 ; Use aGf |
383 ; Use normal GF | |
384 ; Load GF values into RAM | |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
385 GETCUSTOM8 d'32' ; GF low |
667 | 386 movff EEDATA,char_I_GF_Low_percentage |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
387 GETCUSTOM8 d'33' ; GF high |
667 | 388 movff EEDATA,char_I_GF_High_percentage |
389 return ; Done. | |
390 restart_load_gf2: ; Use aGf | |
391 ; Load GF values into RAM | |
392 GETCUSTOM8 d'67' ; aGF low | |
393 movff EEDATA,char_I_GF_Low_percentage | |
394 GETCUSTOM8 d'68' ; aGF high | |
395 movff EEDATA,char_I_GF_High_percentage | |
396 return ; Done. | |
397 | |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
578
diff
changeset
|
398 |
197 | 399 ;============================================================================= |
0 | 400 |
401 startup_screen1: | |
681 | 402 call DISP_ClearScreen |
403 call DISP_startupscreen1 ; show startup sreen | |
0 | 404 startup_screen1_2: |
405 movlw d'10' ; timeout for startup screen | |
406 movwf temp1 | |
407 WAITMS d'200' | |
576 | 408 call wait_switches ; Waits until switches are released, resets flag if button stays pressed! |
0 | 409 screen1_loop: |
337 | 410 btfsc uart_dump_screen ; Asked to dump screen contains ? |
411 call dump_screen ; Yes! | |
412 | |
0 | 413 btfsc onesecupdate ; do every second tasks? |
414 call set_dive_modes ; tests if depth>threshold | |
415 btfsc onesecupdate ; do every second tasks? | |
416 decf temp1,F | |
417 bcf onesecupdate ; every second tasks done | |
418 | |
419 tstfsz temp1 ; timout occured? | |
420 bra screen1_loop2 ; no | |
421 return | |
422 | |
423 screen1_loop2: | |
424 btfsc divemode ; Divemode active? | |
425 return | |
426 btfsc switch_left ; Ack? | |
427 return | |
428 btfsc switch_right ; Ack? | |
429 return | |
430 bra screen1_loop ; loop screen | |
431 | |
432 startup_screen2: | |
681 | 433 call DISP_ClearScreen ; Page 1 |
434 call DISP_startupscreen2 ; show startup sreen | |
0 | 435 bra startup_screen1_2 |
436 | |
437 startup_screen3a:; WARNING: Also used for decodescriptions and CF Warning screen! | |
438 movwf temp1 | |
439 WAITMS d'200' | |
576 | 440 call wait_switches ; Waits until switches are released, resets flag if button stays pressed! |
0 | 441 screen3_loop: |
337 | 442 btfsc uart_dump_screen ; Asked to dump screen contains ? |
443 call dump_screen ; Yes! | |
444 | |
0 | 445 btfsc onesecupdate ; do every second tasks? |
446 call set_dive_modes ; tests if depth>threshold | |
447 | |
448 btfsc onesecupdate ; do every second tasks? | |
449 decf temp1,F | |
450 bcf onesecupdate ; every second tasks done | |
451 | |
452 tstfsz temp1 ; timout occured? | |
453 bra screen3_loop2 ; no | |
454 return | |
455 screen3_loop2: | |
456 btfsc switch_left ; Ack? | |
457 return | |
458 btfsc switch_right ; Ack? | |
459 return | |
460 bra screen3_loop ; loop screen | |
461 | |
337 | 462 ;============================================================================= |
463 | |
306 | 464 first_start: |
465 movlw max_custom_number ; Defined in definitions.asm | |
466 movwf EEDATA | |
467 write_int_eeprom d'92' ; Store number of CF used in this firmware | |
468 bra start3 ; continue with normal start | |
469 | |
0 | 470 init: |
466 | 471 movlw OSCCON_VALUE |
0 | 472 movwf OSCCON |
473 | |
474 movlw b'00010001' ; I/O Ports | |
475 movwf TRISA | |
476 clrf PORTA | |
477 movlw b'00000011' | |
478 movwf TRISB | |
479 clrf PORTB | |
480 movlw b'11011101' ; UART | |
481 movwf TRISC | |
482 clrf PORTC | |
483 movlw b'00000000' | |
484 movwf TRISE | |
485 clrf PORTE | |
486 movlw b'00000000' | |
487 movwf TRISD | |
488 clrf PORTD | |
489 | |
490 movlw b'01000000' ; Bit6: PPL enable | |
491 movwf OSCTUNE | |
492 | |
466 | 493 movlw T0CON_VALUE ; Timer0 |
0 | 494 movwf T0CON |
495 | |
496 movlw b'00000111' ; Timer1 | |
497 movwf T1CON | |
498 | |
499 movlw b'11010000' ; Interrups | |
500 movwf INTCON | |
501 movlw b'00000101' | |
502 movwf INTCON2 | |
503 movlw b'00001000' | |
504 movwf INTCON3 | |
505 movlw b'00100001' | |
506 movwf PIE1 | |
507 movlw b'00000000' | |
508 movwf PIE2 | |
509 clrf RCON | |
510 | |
511 movlw b'00000000' ; A/D Converter | |
512 movwf ADCON0 | |
513 movlw b'00001110' | |
514 movwf ADCON1 | |
515 movlw b'10001010' ; Right justified | |
516 movwf ADCON2 | |
517 | |
518 clrf SSPCON1 ; Set I²C Mode | |
537 | 519 movlw SSPSTAT_VALUE |
0 | 520 movwf SSPSTAT |
521 movlw b'00101000' | |
522 movwf SSPCON1 | |
523 movlw b'00000000' | |
524 movwf SSPCON2 | |
466 | 525 movlw SSPADD_VALUE ; I²C Speed |
0 | 526 movwf SSPADD |
527 | |
528 clrf CCP1CON ; PWM Module off | |
529 clrf ECCP1CON ; PWM Module off | |
530 | |
531 movlw b'00000111' ; Comperator Module off | |
532 movwf CMCON | |
533 | |
534 movlw b'00100000' | |
535 movwf CANCON ; ECAN Module OFF | |
536 | |
537 movlw b'00100100' ; UART | |
538 movwf TXSTA | |
539 movlw b'10010000' | |
540 movwf RCSTA | |
541 movlw b'00001000' | |
542 movwf BAUDCON | |
543 clrf SPBRGH | |
466 | 544 movlw SPBRG_VALUE |
0 | 545 movwf SPBRG |
546 clrf RCREG | |
547 clrf PIR1 | |
548 return |