Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/start.asm @ 378:51baf8777b73 64kByte Logbook
testing, removing unused stuff
author | heinrichsweikamp |
---|---|
date | Mon, 13 Jun 2011 11:29:37 +0200 |
parents | ca3d15e6240e |
children | 620c95e23e32 |
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 |
0 | 29 call init |
30 btfsc divemode ; Reset from Divemode? | |
31 call PLED_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 | |
47 | |
48 bcf pressure_refresh | |
49 wait_start_pressure: | |
50 btfss pressure_refresh ; Air pressure compensation | |
51 bra wait_start_pressure | |
52 | |
53 clrf rel_pressure+0 | |
54 clrf rel_pressure+1 | |
55 clrf surface_interval+0 | |
56 clrf surface_interval+1 | |
57 | |
58 bsf sleepmode ; Routine only works in sleepmode... | |
59 call pressuretest_sleep_fast ; Gets pressure without averaging (faster!) | |
60 bcf sleepmode ; Normal mode again | |
233 | 61 |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
62 SAFE_2BYTE_COPY amb_pressure, last_surfpressure |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
63 movff last_surfpressure+0,last_surfpressure_15min+0 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
64 movff last_surfpressure+1,last_surfpressure_15min+1 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
65 movff last_surfpressure+0,last_surfpressure_30min+0 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
66 movff last_surfpressure+1,last_surfpressure_30min+1 ; Rests all airpressure registers |
0 | 67 |
233 | 68 ; Extra power-up reset (JeanDo) |
69 ifdef TESTING | |
70 call do_menu_reset_all2 | |
71 endif | |
72 | |
0 | 73 ; reset deco data |
236 | 74 ostc_debug '0' ; Sends debug-information to screen if debugmode active |
75 | |
0 | 76 movlw d'79' ; 79% N2 |
197 | 77 movff WREG,char_I_N2_ratio ; No He at the Surface |
236 | 78 clrf WREG ; Use as buffer |
79 movff WREG,char_I_He_ratio ; No He at the Surface | |
80 movff WREG,char_I_step_is_1min ; 2 second deco mode | |
81 GETCUSTOM8 d'11' ; Saturation multiplier % | |
82 movff WREG,char_I_saturation_multiplier | |
83 GETCUSTOM8 d'12' ; Desaturation multiplier % | |
84 movff WREG,char_I_desaturation_multiplier | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
85 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy for deco routine |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
86 movff int_I_pres_respiration+0,int_I_pres_surface+0 ; copy for desat routine |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
87 movff int_I_pres_respiration+1,int_I_pres_surface+1 |
0 | 88 |
116 | 89 call deco_clear_tissue ; |
90 call deco_calc_desaturation_time ; calculate desaturation time | |
91 call deco_clear_CNS_fraction ; clear CNS | |
0 | 92 call calc_deko_surfmode ; calculate desaturation every minute |
116 | 93 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode |
0 | 94 movlb b'00000001' ; select ram bank 1 |
95 | |
96 ; check firmware and reset Custom Functions after an update | |
97 movlw LOW 0x101 | |
98 movwf EEADR | |
99 movlw HIGH 0x101 | |
100 movwf EEADRH | |
101 call read_eeprom ; read current version x | |
102 movff EEDATA,temp1 | |
103 incf EEADR,F ; set to 0x102 | |
104 call read_eeprom ; read current version y | |
105 movff EEDATA,temp2 | |
106 clrf EEADRH ; Reset EEADRH | |
107 | |
108 movlw softwareversion_x | |
109 cpfseq temp1 ; compare version x | |
110 bra check_firmware_new ; is not equal -> reset CF and store new version in EEPROM | |
111 | |
112 movlw softwareversion_y | |
113 cpfseq temp2 ; compare version y | |
114 bra check_firmware_new ; is not equal -> reset CF and store new version in EEPROM | |
115 bra restart ; x and y are equal -> do not reset cf | |
116 | |
117 check_firmware_new: | |
118 movlw LOW 0x101 ; store current version in EEPROM | |
119 movwf EEADR | |
120 movlw HIGH 0x101 | |
121 movwf EEADRH | |
122 movlw softwareversion_x | |
123 movwf EEDATA | |
124 call write_eeprom ; write version x | |
125 incf EEADR,F ; set to 0x102 | |
126 movlw softwareversion_y | |
127 movwf EEDATA | |
128 call write_eeprom ; write version y | |
129 clrf EEADRH ; Reset EEADRH | |
366 | 130 ; goto reset_all_cf ; resets all custom functions bank0 and bank1 and jumps to "restart" |
0 | 131 |
132 restart: | |
21 | 133 bcf LED_red |
134 bcf LED_blue ; all LEDs off | |
43 | 135 GETCUSTOM8 d'48' ; time correction value |
136 movff WREG, time_correction_value ; store in Bank0 register | |
15 | 137 |
138 clrf flag1 ; clear all flags | |
139 clrf flag2 | |
140 clrf flag3 | |
141 clrf flag4 | |
142 clrf flag5 | |
143 clrf flag6 | |
144 clrf flag7 | |
145 clrf flag8 | |
146 clrf flag9 | |
147 clrf flag10 | |
148 clrf flag11 | |
149 clrf flag12 | |
150 clrf flag13 | |
151 clrf flag14 | |
152 clrf flag15 | |
153 | 153 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
154 ; Should we set win_flip_screen ? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
155 bsf flag1,0 ; Precondition to yes |
153 | 156 clrf EEADRH ; Reset EEADRH |
157 read_int_eeprom d'1' | |
158 movlw .7 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
159 cpfsgt EEDATA ; serial > 2048 (Mk2n hardware) ? |
153 | 160 bcf flag1,0 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
161 incf EEDATA,W ; serial == 65535 (emulation) ? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
162 btfsc STATUS,Z |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
163 bcf flag1,0 |
153 | 164 movff flag1,win_flags ; store in Bank0 register |
165 clrf flag1 ; Clear flag1 (again) | |
239 | 166 |
167 ; Select high altitude (Fly) mode? | |
168 movff last_surfpressure_30min+0,sub_b+0 | |
169 movff last_surfpressure_30min+1,sub_b+1 | |
170 movlw HIGH d'880' | |
171 movwf sub_a+1 | |
172 movlw LOW d'880' ; Hard-wired 880mBar | |
173 movwf sub_a+0 | |
174 call sub16 ; sub_c = sub_a - sub_b | |
175 btfss neg_flag ; Result negative (Ambient>880mBar)? | |
176 bsf high_altitude_mode ; No, Set Flag! | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
177 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
178 ; Should we disable sleep (hardware emulator) |
154 | 179 movlw .0 |
180 cpfsgt EEDATA ; >256 | |
167 | 181 bsf nsm ; NO-SLEEP-MODE : for hardware debugging |
153 | 182 |
142 | 183 call gassetup_sort_gaslist ; Sorts Gaslist according to change depth |
0 | 184 WIN_TOP .0 |
185 WIN_LEFT .0 | |
186 WIN_FONT FT_SMALL | |
187 WIN_INVERT .0 ; Init new Wordprocessor | |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
188 setf WREG |
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
189 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
|
190 movff WREG,win_color2 |
0 | 191 call I2CReset ; Just in Case any I2C device blocks the Bus |
192 movff last_surfpressure_30min+0,last_surfpressure+0 ; Use 30min old airpressure | |
193 movff last_surfpressure_30min+1,last_surfpressure+1 ; Use 30min old airpressure | |
194 | |
195 ; Check if new CF were added in the last firmware version | |
196 clrf EEADRH | |
197 read_int_eeprom d'92' ; Read number of CF used in this firmware | |
198 movlw max_custom_number ; Defined in definitions.asm | |
199 cpfseq EEDATA ; Compare with last version | |
200 bra restart_01 ; New CF, show warning and store new number | |
201 bra restart_1 ; No new CF, continue with boot | |
202 restart_01: | |
203 ; 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
|
204 call PLED_boot ; PLED boot (Incl. Clear Screen!) |
0 | 205 rcall display_new_cf_installed; Show warning |
206 movlw max_custom_number ; Defined in definitions.asm | |
207 movwf EEDATA | |
208 write_int_eeprom d'92' ; Store number of CF used in this firmware | |
209 | |
210 restart_1: | |
211 | |
212 ; Set Debug mode? | |
213 read_int_eeprom d'39' | |
214 bsf debug_mode | |
215 movlw d'1' | |
216 cpfseq EEDATA | |
217 bcf debug_mode ; clear flag if <> 1 | |
218 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
219 ; 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
|
220 movlw LOW 0x100 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
221 movwf EEADR |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
222 movlw HIGH 0x100 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
223 movwf EEADRH |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
224 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
|
225 movlw 0xAA |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
226 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
|
227 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
|
228 |
0 | 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: | |
337 | 312 btfsc uart_dump_screen ; Asked to dump screen contains ? |
313 call dump_screen ; Yes! | |
314 | |
0 | 315 btfsc onesecupdate ; do every second tasks? |
316 call set_dive_modes ; tests if depth>threshold | |
317 btfsc onesecupdate ; do every second tasks? | |
318 decf temp1,F | |
319 bcf onesecupdate ; every second tasks done | |
320 | |
321 tstfsz temp1 ; timout occured? | |
322 bra screen1_loop2 ; no | |
323 return | |
324 | |
325 screen1_loop2: | |
326 btfsc divemode ; Divemode active? | |
327 return | |
328 btfsc switch_left ; Ack? | |
329 return | |
330 btfsc switch_right ; Ack? | |
331 return | |
332 bra screen1_loop ; loop screen | |
333 | |
334 startup_screen2: | |
335 call PLED_ClearScreen ; Page 1 | |
336 call PLED_startupscreen2 ; show startup sreen | |
337 bra startup_screen1_2 | |
338 | |
339 startup_screen3a:; WARNING: Also used for decodescriptions and CF Warning screen! | |
340 movwf temp1 | |
341 WAITMS d'200' | |
342 bcf switch_left | |
343 bcf switch_right | |
344 screen3_loop: | |
337 | 345 btfsc uart_dump_screen ; Asked to dump screen contains ? |
346 call dump_screen ; Yes! | |
347 | |
0 | 348 btfsc onesecupdate ; do every second tasks? |
349 call set_dive_modes ; tests if depth>threshold | |
350 | |
351 btfsc onesecupdate ; do every second tasks? | |
352 decf temp1,F | |
353 bcf onesecupdate ; every second tasks done | |
354 | |
355 tstfsz temp1 ; timout occured? | |
356 bra screen3_loop2 ; no | |
357 return | |
358 screen3_loop2: | |
359 btfsc switch_left ; Ack? | |
360 return | |
361 btfsc switch_right ; Ack? | |
362 return | |
363 bra screen3_loop ; loop screen | |
364 | |
337 | 365 ;============================================================================= |
366 | |
306 | 367 first_start: |
368 movlw max_custom_number ; Defined in definitions.asm | |
369 movwf EEDATA | |
370 write_int_eeprom d'92' ; Store number of CF used in this firmware | |
371 bra start3 ; continue with normal start | |
372 | |
0 | 373 init: |
374 movlw b'01101100' ; 4MHz (x4 PLL) | |
375 movwf OSCCON | |
376 | |
377 movlw b'00010001' ; I/O Ports | |
378 movwf TRISA | |
379 clrf PORTA | |
380 movlw b'00000011' | |
381 movwf TRISB | |
382 clrf PORTB | |
383 movlw b'11011101' ; UART | |
384 movwf TRISC | |
385 clrf PORTC | |
386 movlw b'00000000' | |
387 movwf TRISE | |
388 clrf PORTE | |
389 movlw b'00000000' | |
390 movwf TRISD | |
391 clrf PORTD | |
392 | |
393 movlw b'01000000' ; Bit6: PPL enable | |
394 movwf OSCTUNE | |
395 | |
396 movlw b'00011111' ; Timer0 | |
397 movwf T0CON | |
398 | |
399 movlw b'00000111' ; Timer1 | |
400 movwf T1CON | |
401 | |
402 movlw b'11010000' ; Interrups | |
403 movwf INTCON | |
404 movlw b'00000101' | |
405 movwf INTCON2 | |
406 movlw b'00001000' | |
407 movwf INTCON3 | |
408 movlw b'00100001' | |
409 movwf PIE1 | |
410 movlw b'00000000' | |
411 movwf PIE2 | |
412 clrf RCON | |
413 | |
414 movlw b'00000000' ; A/D Converter | |
415 movwf ADCON0 | |
416 movlw b'00001110' | |
417 movwf ADCON1 | |
418 movlw b'10001010' ; Right justified | |
419 movwf ADCON2 | |
420 | |
421 clrf SSPCON1 ; Set I²C Mode | |
422 movlw b'00000000' | |
423 movwf SSPSTAT | |
424 movlw b'00101000' | |
425 movwf SSPCON1 | |
426 movlw b'00000000' | |
427 movwf SSPCON2 | |
428 movlw d'8' ; 400kHz I2C clock @ 16MHz Fcy | |
429 movwf SSPADD | |
430 | |
431 clrf CCP1CON ; PWM Module off | |
432 clrf ECCP1CON ; PWM Module off | |
433 | |
434 movlw b'00000111' ; Comperator Module off | |
435 movwf CMCON | |
436 | |
437 movlw b'00100000' | |
438 movwf CANCON ; ECAN Module OFF | |
439 | |
440 movlw b'00100100' ; UART | |
441 movwf TXSTA | |
442 movlw b'10010000' | |
443 movwf RCSTA | |
444 movlw b'00001000' | |
445 movwf BAUDCON | |
446 clrf SPBRGH | |
447 movlw d'34' | |
448 movwf SPBRG | |
449 clrf RCREG | |
450 clrf PIR1 | |
451 return |