Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/start.asm @ 340:ecbbbd423e86
BUGFIX save negativ temperatures in logbook (bbbug #6)
BUGFIX temperature & amb_pressure averaging done in private variable.
BUGFIX Signed averaging of temperature.
author | JeanDo |
---|---|
date | Fri, 20 May 2011 00:39:05 +0200 |
parents | 6544f79e298c |
children | 6bdf80d7276c 2144f19fa1eb |
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 | |
119 | 27 movff STKPTR,temp10 |
235 | 28 clrf temp10+1 |
29 | |
0 | 30 call init |
306 | 31 |
32 read_int_eeprom d'92' ; Read number of CF used in this firmware | |
33 movlw 0xFF ; First start value | |
34 cpfseq EEDATA ; Compare | |
35 bra start2 ; Normal power-on/hard reset boot | |
36 bra first_start ; Reset and jump to surfmode | |
37 start2: | |
0 | 38 btfsc divemode ; Reset from Divemode? |
39 call PLED_resetdebugger ; Yes! Something went wrong, show reset informations | |
306 | 40 start3: |
0 | 41 clrf STKPTR ; Clear Stackpointer |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
97
diff
changeset
|
42 lfsr FSR0, 10Bh ; Clear rambank 1-9, do not delete RTC registers |
0 | 43 clear_rambank: |
44 clrf POSTINC0 | |
45 movlw 0x0A | |
46 cpfseq FSR0H ; Bank 9 done? | |
47 bra clear_rambank ; clear... | |
48 | |
49 ; Defaults for RTC | |
50 call disable_rs232 ; disable UART module | |
51 call RTCinit ; reset RTC | |
52 | |
53 ; Air pressure compensation after reset | |
54 call get_calibration_data ; Get calibration data from pressure sensor | |
55 | |
56 bcf pressure_refresh | |
57 wait_start_pressure: | |
58 btfss pressure_refresh ; Air pressure compensation | |
59 bra wait_start_pressure | |
60 | |
61 clrf rel_pressure+0 | |
62 clrf rel_pressure+1 | |
63 clrf surface_interval+0 | |
64 clrf surface_interval+1 | |
65 | |
66 bsf sleepmode ; Routine only works in sleepmode... | |
67 call pressuretest_sleep_fast ; Gets pressure without averaging (faster!) | |
68 bcf sleepmode ; Normal mode again | |
233 | 69 |
0 | 70 movff amb_pressure+0,last_surfpressure+0 |
71 movff amb_pressure+1,last_surfpressure+1 | |
72 movff amb_pressure+0,last_surfpressure_15min+0 | |
73 movff amb_pressure+1,last_surfpressure_15min+1 | |
74 movff amb_pressure+0,last_surfpressure_30min+0 | |
75 movff amb_pressure+1,last_surfpressure_30min+1 ; Rests all airpressure registers | |
76 | |
233 | 77 ; Extra power-up reset (JeanDo) |
78 ifdef TESTING | |
79 call do_menu_reset_all2 | |
80 endif | |
81 | |
0 | 82 ; reset deco data |
236 | 83 ostc_debug '0' ; Sends debug-information to screen if debugmode active |
84 | |
0 | 85 movlw d'79' ; 79% N2 |
197 | 86 movff WREG,char_I_N2_ratio ; No He at the Surface |
236 | 87 clrf WREG ; Use as buffer |
88 movff WREG,char_I_He_ratio ; No He at the Surface | |
89 movff WREG,char_I_step_is_1min ; 2 second deco mode | |
90 GETCUSTOM8 d'11' ; Saturation multiplier % | |
91 movff WREG,char_I_saturation_multiplier | |
92 GETCUSTOM8 d'12' ; Desaturation multiplier % | |
93 movff WREG,char_I_desaturation_multiplier | |
94 movff amb_pressure+0,int_I_pres_respiration+0 ; copy for deco routine | |
0 | 95 movff amb_pressure+1,int_I_pres_respiration+1 |
236 | 96 movff amb_pressure+0,int_I_pres_surface+0 ; copy for desat routine |
97 movff amb_pressure+1,int_I_pres_surface+1 | |
0 | 98 |
116 | 99 call deco_clear_tissue ; |
100 call deco_calc_desaturation_time ; calculate desaturation time | |
101 call deco_clear_CNS_fraction ; clear CNS | |
0 | 102 call calc_deko_surfmode ; calculate desaturation every minute |
116 | 103 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode |
0 | 104 movlb b'00000001' ; select ram bank 1 |
105 | |
106 ; check firmware and reset Custom Functions after an update | |
107 movlw LOW 0x101 | |
108 movwf EEADR | |
109 movlw HIGH 0x101 | |
110 movwf EEADRH | |
111 call read_eeprom ; read current version x | |
112 movff EEDATA,temp1 | |
113 incf EEADR,F ; set to 0x102 | |
114 call read_eeprom ; read current version y | |
115 movff EEDATA,temp2 | |
116 clrf EEADRH ; Reset EEADRH | |
117 | |
118 movlw softwareversion_x | |
119 cpfseq temp1 ; compare version x | |
120 bra check_firmware_new ; is not equal -> reset CF and store new version in EEPROM | |
121 | |
122 movlw softwareversion_y | |
123 cpfseq temp2 ; compare version y | |
124 bra check_firmware_new ; is not equal -> reset CF and store new version in EEPROM | |
125 bra restart ; x and y are equal -> do not reset cf | |
126 | |
127 check_firmware_new: | |
128 movlw LOW 0x101 ; store current version in EEPROM | |
129 movwf EEADR | |
130 movlw HIGH 0x101 | |
131 movwf EEADRH | |
132 movlw softwareversion_x | |
133 movwf EEDATA | |
134 call write_eeprom ; write version x | |
135 incf EEADR,F ; set to 0x102 | |
136 movlw softwareversion_y | |
137 movwf EEDATA | |
138 call write_eeprom ; write version y | |
139 clrf EEADRH ; Reset EEADRH | |
327
6544f79e298c
Preparations for stable release (CF reset)
heinrichsweikamp
parents:
308
diff
changeset
|
140 goto reset_all_cf ; resets all custom functions bank0 and bank1 and jumps to "restart" |
0 | 141 |
142 restart: | |
21 | 143 bcf LED_red |
144 bcf LED_blue ; all LEDs off | |
43 | 145 GETCUSTOM8 d'48' ; time correction value |
146 movff WREG, time_correction_value ; store in Bank0 register | |
15 | 147 |
148 clrf flag1 ; clear all flags | |
149 clrf flag2 | |
150 clrf flag3 | |
151 clrf flag4 | |
152 clrf flag5 | |
153 clrf flag6 | |
154 clrf flag7 | |
155 clrf flag8 | |
156 clrf flag9 | |
157 clrf flag10 | |
158 clrf flag11 | |
159 clrf flag12 | |
160 clrf flag13 | |
161 clrf flag14 | |
162 clrf flag15 | |
153 | 163 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
164 ; Should we set win_flip_screen ? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
165 bsf flag1,0 ; Precondition to yes |
153 | 166 clrf EEADRH ; Reset EEADRH |
167 read_int_eeprom d'1' | |
168 movlw .7 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
169 cpfsgt EEDATA ; serial > 2048 (Mk2n hardware) ? |
153 | 170 bcf flag1,0 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
171 incf EEDATA,W ; serial == 65535 (emulation) ? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
172 btfsc STATUS,Z |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
173 bcf flag1,0 |
153 | 174 movff flag1,win_flags ; store in Bank0 register |
175 clrf flag1 ; Clear flag1 (again) | |
239 | 176 |
177 ; Select high altitude (Fly) mode? | |
178 movff last_surfpressure_30min+0,sub_b+0 | |
179 movff last_surfpressure_30min+1,sub_b+1 | |
180 movlw HIGH d'880' | |
181 movwf sub_a+1 | |
182 movlw LOW d'880' ; Hard-wired 880mBar | |
183 movwf sub_a+0 | |
184 call sub16 ; sub_c = sub_a - sub_b | |
185 btfss neg_flag ; Result negative (Ambient>880mBar)? | |
186 bsf high_altitude_mode ; No, Set Flag! | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
187 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
188 ; Should we disable sleep (hardware emulator) |
154 | 189 movlw .0 |
190 cpfsgt EEDATA ; >256 | |
167 | 191 bsf nsm ; NO-SLEEP-MODE : for hardware debugging |
153 | 192 |
142 | 193 call gassetup_sort_gaslist ; Sorts Gaslist according to change depth |
0 | 194 WIN_TOP .0 |
195 WIN_LEFT .0 | |
196 WIN_FONT FT_SMALL | |
197 WIN_INVERT .0 ; Init new Wordprocessor | |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
198 setf WREG |
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
199 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
|
200 movff WREG,win_color2 |
0 | 201 call I2CReset ; Just in Case any I2C device blocks the Bus |
202 movff last_surfpressure_30min+0,last_surfpressure+0 ; Use 30min old airpressure | |
203 movff last_surfpressure_30min+1,last_surfpressure+1 ; Use 30min old airpressure | |
204 | |
205 ; Check if new CF were added in the last firmware version | |
206 clrf EEADRH | |
207 read_int_eeprom d'92' ; Read number of CF used in this firmware | |
208 movlw max_custom_number ; Defined in definitions.asm | |
209 cpfseq EEDATA ; Compare with last version | |
210 bra restart_01 ; New CF, show warning and store new number | |
211 bra restart_1 ; No new CF, continue with boot | |
212 restart_01: | |
213 ; Save new number of current CF count | |
255
1efd59d689f8
small change in the set time menu, default setpoints set to 0.8, 1.0 and 1.2Bar
heinrichsweikamp
parents:
239
diff
changeset
|
214 call PLED_boot ; PLED boot (Incl. Clear Screen!) |
0 | 215 rcall display_new_cf_installed; Show warning |
216 movlw max_custom_number ; Defined in definitions.asm | |
217 movwf EEDATA | |
218 write_int_eeprom d'92' ; Store number of CF used in this firmware | |
219 | |
220 restart_1: | |
221 | |
222 ; Set Debug mode? | |
223 read_int_eeprom d'39' | |
224 bsf debug_mode | |
225 movlw d'1' | |
226 cpfseq EEDATA | |
227 bcf debug_mode ; clear flag if <> 1 | |
228 | |
229 goto surfloop ; Jump to Surfaceloop! | |
230 | |
231 | |
232 display_new_cf_installed: | |
233 call PLED_new_cf_warning ; Display new CF warning screen | |
234 movlw d'20' ; timeout for warning screen | |
235 bra startup_screen3a ; Will RETURN after timeout or button press | |
197 | 236 |
237 ;============================================================================= | |
238 ; Setup all flags and parameters for divemode and simulator computations. | |
239 ; | |
240 restart_set_modes_and_flags: ; "Call"ed from divemode, as well! | |
0 | 241 bcf gauge_mode |
242 bcf FLAG_const_ppO2_mode | |
243 bcf FLAG_apnoe_mode | |
45 | 244 |
245 ; Pre-load modes for OC, GF 90/90 and no Aponoe or Gauge. | |
197 | 246 bcf no_deco_customviews ; Clear no-deco-mode-flag |
45 | 247 movlw d'0' |
197 | 248 movff WREG,char_I_deco_model ; Clear Flagbyte |
45 | 249 ; Load GF values into RAM |
250 movlw d'90' | |
197 | 251 movff WREG,char_I_GF_Low_percentage |
252 movff WREG,char_I_GF_High_percentage ; Set to 90/90... | |
0 | 253 clrf EEADRH |
197 | 254 read_int_eeprom d'34' ; Read deco data |
255 movlw d'1' ; Gauge mode | |
0 | 256 cpfseq EEDATA |
197 | 257 bra restart_3_test_ppO2_mode ; check for ppO2 mode |
258 bsf gauge_mode ; Set flag for gauge mode | |
259 bsf no_deco_customviews ; Set no-deco-mode-flag | |
260 return ; start in Surfacemode | |
0 | 261 restart_3_test_ppO2_mode: |
197 | 262 movlw d'2' ; const ppO2 mode |
0 | 263 cpfseq EEDATA |
197 | 264 bra restart_3_test_apnoe_mode; check for apnoe mode |
265 bsf FLAG_const_ppO2_mode ; Set flag for ppO2 mode | |
266 return ; start in Surfacemode | |
0 | 267 restart_3_test_apnoe_mode: |
197 | 268 movlw d'3' ; Apnoe mode |
0 | 269 cpfseq EEDATA |
197 | 270 bra restart_4_test_gf_mode ; check for GF OC mode |
271 bsf FLAG_apnoe_mode ; Set flag for Apnoe Mode | |
272 bsf no_deco_customviews ; Set no-deco-mode-flag | |
273 return ; start in Surfacemode | |
0 | 274 restart_4_test_gf_mode: |
197 | 275 movlw d'4' ; GF OC mode |
0 | 276 cpfseq EEDATA |
197 | 277 bra restart_5_test_gfO2_mode ; check for GF CC mode |
0 | 278 movlw d'1' |
197 | 279 movff WREG,char_I_deco_model ; Set Flagbyte for GF method |
45 | 280 ; Load GF values into RAM |
197 | 281 GETCUSTOM8 d'32' ; GF low |
282 movff EEDATA,char_I_GF_Low_percentage | |
283 GETCUSTOM8 d'33' ; GF high | |
284 movff EEDATA,char_I_GF_High_percentage | |
285 return ; start in Surfacemode | |
0 | 286 restart_5_test_gfO2_mode: |
197 | 287 movlw d'5' ; GF CC mode |
0 | 288 cpfseq EEDATA |
197 | 289 return ; Start in Surfacemode |
290 bsf FLAG_const_ppO2_mode ; Set flag for ppO2 mode | |
0 | 291 movlw d'1' |
197 | 292 movff WREG,char_I_deco_model ; Set Flagbyte for GF method |
137 | 293 ; Load GF values into RAM |
197 | 294 GETCUSTOM8 d'32' ; GF low |
163 | 295 movff EEDATA,char_I_GF_Low_percentage |
197 | 296 GETCUSTOM8 d'33' ; GF high |
163 | 297 movff EEDATA,char_I_GF_High_percentage |
197 | 298 return ; start in Surfacemode |
299 | |
300 ;============================================================================= | |
0 | 301 |
302 startup_screen1: | |
303 call PLED_ClearScreen | |
304 call PLED_startupscreen1 ; show startup sreen | |
305 startup_screen1_2: | |
306 movlw d'10' ; timeout for startup screen | |
307 movwf temp1 | |
308 WAITMS d'200' | |
309 bcf switch_left | |
310 bcf switch_right | |
311 screen1_loop: | |
312 btfsc onesecupdate ; do every second tasks? | |
313 call set_dive_modes ; tests if depth>threshold | |
314 btfsc onesecupdate ; do every second tasks? | |
315 decf temp1,F | |
316 bcf onesecupdate ; every second tasks done | |
317 | |
318 tstfsz temp1 ; timout occured? | |
319 bra screen1_loop2 ; no | |
320 return | |
321 | |
322 screen1_loop2: | |
323 btfsc divemode ; Divemode active? | |
324 return | |
325 btfsc switch_left ; Ack? | |
326 return | |
327 btfsc switch_right ; Ack? | |
328 return | |
329 bra screen1_loop ; loop screen | |
330 | |
331 startup_screen2: | |
332 call PLED_ClearScreen ; Page 1 | |
333 call PLED_startupscreen2 ; show startup sreen | |
334 bra startup_screen1_2 | |
335 | |
336 startup_screen3a:; WARNING: Also used for decodescriptions and CF Warning screen! | |
337 movwf temp1 | |
338 WAITMS d'200' | |
339 bcf switch_left | |
340 bcf switch_right | |
341 screen3_loop: | |
342 btfsc onesecupdate ; do every second tasks? | |
343 call set_dive_modes ; tests if depth>threshold | |
344 | |
345 btfsc onesecupdate ; do every second tasks? | |
346 decf temp1,F | |
347 bcf onesecupdate ; every second tasks done | |
348 | |
349 tstfsz temp1 ; timout occured? | |
350 bra screen3_loop2 ; no | |
351 return | |
352 screen3_loop2: | |
353 btfsc switch_left ; Ack? | |
354 return | |
355 btfsc switch_right ; Ack? | |
356 return | |
357 bra screen3_loop ; loop screen | |
358 | |
306 | 359 first_start: |
360 movlw max_custom_number ; Defined in definitions.asm | |
361 movwf EEDATA | |
362 write_int_eeprom d'92' ; Store number of CF used in this firmware | |
363 bra start3 ; continue with normal start | |
364 | |
0 | 365 init: |
366 movlw b'01101100' ; 4MHz (x4 PLL) | |
367 movwf OSCCON | |
368 | |
369 movlw b'00010001' ; I/O Ports | |
370 movwf TRISA | |
371 clrf PORTA | |
372 movlw b'00000011' | |
373 movwf TRISB | |
374 clrf PORTB | |
375 movlw b'11011101' ; UART | |
376 movwf TRISC | |
377 clrf PORTC | |
378 movlw b'00000000' | |
379 movwf TRISE | |
380 clrf PORTE | |
381 movlw b'00000000' | |
382 movwf TRISD | |
383 clrf PORTD | |
384 | |
385 movlw b'01000000' ; Bit6: PPL enable | |
386 movwf OSCTUNE | |
387 | |
388 movlw b'00011111' ; Timer0 | |
389 movwf T0CON | |
390 | |
391 movlw b'00000111' ; Timer1 | |
392 movwf T1CON | |
393 | |
394 movlw b'11010000' ; Interrups | |
395 movwf INTCON | |
396 movlw b'00000101' | |
397 movwf INTCON2 | |
398 movlw b'00001000' | |
399 movwf INTCON3 | |
400 movlw b'00100001' | |
401 movwf PIE1 | |
402 movlw b'00000000' | |
403 movwf PIE2 | |
404 clrf RCON | |
405 | |
406 movlw b'00000000' ; A/D Converter | |
407 movwf ADCON0 | |
408 movlw b'00001110' | |
409 movwf ADCON1 | |
410 movlw b'10001010' ; Right justified | |
411 movwf ADCON2 | |
412 | |
413 clrf SSPCON1 ; Set I²C Mode | |
414 movlw b'00000000' | |
415 movwf SSPSTAT | |
416 movlw b'00101000' | |
417 movwf SSPCON1 | |
418 movlw b'00000000' | |
419 movwf SSPCON2 | |
420 movlw d'8' ; 400kHz I2C clock @ 16MHz Fcy | |
421 movwf SSPADD | |
422 | |
423 clrf CCP1CON ; PWM Module off | |
424 clrf ECCP1CON ; PWM Module off | |
425 | |
426 movlw b'00000111' ; Comperator Module off | |
427 movwf CMCON | |
428 | |
429 movlw b'00100000' | |
430 movwf CANCON ; ECAN Module OFF | |
431 | |
432 movlw b'00100100' ; UART | |
433 movwf TXSTA | |
434 movlw b'10010000' | |
435 movwf RCSTA | |
436 movlw b'00001000' | |
437 movwf BAUDCON | |
438 clrf SPBRGH | |
439 movlw d'34' | |
440 movwf SPBRG | |
441 clrf RCREG | |
442 clrf PIR1 | |
443 return |