Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/start.asm @ 390:a847f416e67e 64kByte Logbook
Debugging timer1
author | heinrichsweikamp |
---|---|
date | Sun, 19 Jun 2011 14:20:19 +0200 |
parents | 904863f96582 |
children | 8e272339fb68 |
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 |
380 | 62 SAFE_2BYTE_COPY amb_pressure_avg, last_surfpressure |
63 SAFE_2BYTE_COPY amb_pressure_avg, amb_pressure | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
64 movff last_surfpressure+0,last_surfpressure_15min+0 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
65 movff last_surfpressure+1,last_surfpressure_15min+1 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
66 movff last_surfpressure+0,last_surfpressure_30min+0 |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
67 movff last_surfpressure+1,last_surfpressure_30min+1 ; Rests all airpressure registers |
0 | 68 |
233 | 69 ; Extra power-up reset (JeanDo) |
70 ifdef TESTING | |
71 call do_menu_reset_all2 | |
72 endif | |
73 | |
0 | 74 ; reset deco data |
236 | 75 ostc_debug '0' ; Sends debug-information to screen if debugmode active |
76 | |
0 | 77 movlw d'79' ; 79% N2 |
197 | 78 movff WREG,char_I_N2_ratio ; No He at the Surface |
236 | 79 clrf WREG ; Use as buffer |
80 movff WREG,char_I_He_ratio ; No He at the Surface | |
81 movff WREG,char_I_step_is_1min ; 2 second deco mode | |
82 GETCUSTOM8 d'11' ; Saturation multiplier % | |
83 movff WREG,char_I_saturation_multiplier | |
84 GETCUSTOM8 d'12' ; Desaturation multiplier % | |
85 movff WREG,char_I_desaturation_multiplier | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
327
diff
changeset
|
86 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
|
87 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
|
88 movff int_I_pres_respiration+1,int_I_pres_surface+1 |
0 | 89 |
116 | 90 call deco_clear_tissue ; |
91 call deco_calc_desaturation_time ; calculate desaturation time | |
92 call deco_clear_CNS_fraction ; clear CNS | |
0 | 93 call calc_deko_surfmode ; calculate desaturation every minute |
116 | 94 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode |
0 | 95 movlb b'00000001' ; select ram bank 1 |
96 | |
97 ; 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
|
98 movlw d'1' |
0 | 99 movwf EEADR |
384
904863f96582
Work-Around for "Reset all" overwriting 0x00 to 0x04 in EEPROM Bank1
heinrichsweikamp
parents:
380
diff
changeset
|
100 movlw d'1' |
0 | 101 movwf EEADRH |
102 call read_eeprom ; read current version x | |
103 movff EEDATA,temp1 | |
104 incf EEADR,F ; set to 0x102 | |
105 call read_eeprom ; read current version y | |
106 movff EEDATA,temp2 | |
107 clrf EEADRH ; Reset EEADRH | |
108 | |
109 movlw softwareversion_x | |
110 cpfseq temp1 ; compare version x | |
111 bra check_firmware_new ; is not equal -> reset CF and store new version in EEPROM | |
112 | |
113 movlw softwareversion_y | |
114 cpfseq temp2 ; compare version y | |
115 bra check_firmware_new ; is not equal -> reset CF and store new version in EEPROM | |
116 bra restart ; x and y are equal -> do not reset cf | |
117 | |
118 check_firmware_new: | |
384
904863f96582
Work-Around for "Reset all" overwriting 0x00 to 0x04 in EEPROM Bank1
heinrichsweikamp
parents:
380
diff
changeset
|
119 movlw d'1' ; store current version in EEPROM |
0 | 120 movwf EEADR |
384
904863f96582
Work-Around for "Reset all" overwriting 0x00 to 0x04 in EEPROM Bank1
heinrichsweikamp
parents:
380
diff
changeset
|
121 movlw d'1' |
0 | 122 movwf EEADRH |
123 movlw softwareversion_x | |
124 movwf EEDATA | |
125 call write_eeprom ; write version x | |
126 incf EEADR,F ; set to 0x102 | |
127 movlw softwareversion_y | |
128 movwf EEDATA | |
129 call write_eeprom ; write version y | |
130 clrf EEADRH ; Reset EEADRH | |
366 | 131 ; goto reset_all_cf ; resets all custom functions bank0 and bank1 and jumps to "restart" |
0 | 132 |
133 restart: | |
390 | 134 movlw b'00000011' |
135 movwf T3CON ; Timer3 with 32768Hz clock running | |
136 clrf TMR3L | |
137 clrf TMR3H | |
21 | 138 bcf LED_red |
139 bcf LED_blue ; all LEDs off | |
43 | 140 GETCUSTOM8 d'48' ; time correction value |
141 movff WREG, time_correction_value ; store in Bank0 register | |
15 | 142 |
143 clrf flag1 ; clear all flags | |
144 clrf flag2 | |
145 clrf flag3 | |
146 clrf flag4 | |
147 clrf flag5 | |
148 clrf flag6 | |
149 clrf flag7 | |
150 clrf flag8 | |
151 clrf flag9 | |
152 clrf flag10 | |
153 clrf flag11 | |
154 clrf flag12 | |
155 clrf flag13 | |
156 clrf flag14 | |
157 clrf flag15 | |
153 | 158 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
159 ; Should we set win_flip_screen ? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
160 bsf flag1,0 ; Precondition to yes |
153 | 161 clrf EEADRH ; Reset EEADRH |
162 read_int_eeprom d'1' | |
163 movlw .7 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
164 cpfsgt EEDATA ; serial > 2048 (Mk2n hardware) ? |
153 | 165 bcf flag1,0 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
166 incf EEDATA,W ; serial == 65535 (emulation) ? |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
167 btfsc STATUS,Z |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
168 bcf flag1,0 |
153 | 169 movff flag1,win_flags ; store in Bank0 register |
170 clrf flag1 ; Clear flag1 (again) | |
239 | 171 |
172 ; Select high altitude (Fly) mode? | |
173 movff last_surfpressure_30min+0,sub_b+0 | |
174 movff last_surfpressure_30min+1,sub_b+1 | |
175 movlw HIGH d'880' | |
176 movwf sub_a+1 | |
177 movlw LOW d'880' ; Hard-wired 880mBar | |
178 movwf sub_a+0 | |
179 call sub16 ; sub_c = sub_a - sub_b | |
180 btfss neg_flag ; Result negative (Ambient>880mBar)? | |
181 bsf high_altitude_mode ; No, Set Flag! | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
182 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
183 ; Should we disable sleep (hardware emulator) |
390 | 184 restart_loop: |
185 btfss 0xF81,0,A | |
186 bra restart_loop | |
187 btfss 0xF81,1,A | |
188 bra restart_loop | |
189 movlw 0x80 | |
190 cpfslt 0xFB3,A | |
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 | |
362
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
229 ; 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
|
230 movlw LOW 0x100 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
231 movwf EEADR |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
232 movlw HIGH 0x100 |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
233 movwf EEADRH |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
234 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
|
235 movlw 0xAA |
64da813d4726
Logbook converter (Needs ~8Minutes and is called one time). Backup your dives before use!!
Heinrichsweikamp
parents:
359
diff
changeset
|
236 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
|
237 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
|
238 |
0 | 239 goto surfloop ; Jump to Surfaceloop! |
240 | |
241 | |
242 display_new_cf_installed: | |
243 call PLED_new_cf_warning ; Display new CF warning screen | |
244 movlw d'20' ; timeout for warning screen | |
245 bra startup_screen3a ; Will RETURN after timeout or button press | |
197 | 246 |
247 ;============================================================================= | |
248 ; Setup all flags and parameters for divemode and simulator computations. | |
249 ; | |
250 restart_set_modes_and_flags: ; "Call"ed from divemode, as well! | |
0 | 251 bcf gauge_mode |
252 bcf FLAG_const_ppO2_mode | |
253 bcf FLAG_apnoe_mode | |
45 | 254 |
255 ; Pre-load modes for OC, GF 90/90 and no Aponoe or Gauge. | |
197 | 256 bcf no_deco_customviews ; Clear no-deco-mode-flag |
45 | 257 movlw d'0' |
197 | 258 movff WREG,char_I_deco_model ; Clear Flagbyte |
45 | 259 ; Load GF values into RAM |
260 movlw d'90' | |
197 | 261 movff WREG,char_I_GF_Low_percentage |
262 movff WREG,char_I_GF_High_percentage ; Set to 90/90... | |
0 | 263 clrf EEADRH |
197 | 264 read_int_eeprom d'34' ; Read deco data |
265 movlw d'1' ; Gauge mode | |
0 | 266 cpfseq EEDATA |
197 | 267 bra restart_3_test_ppO2_mode ; check for ppO2 mode |
268 bsf gauge_mode ; Set flag for gauge mode | |
269 bsf no_deco_customviews ; Set no-deco-mode-flag | |
270 return ; start in Surfacemode | |
0 | 271 restart_3_test_ppO2_mode: |
197 | 272 movlw d'2' ; const ppO2 mode |
0 | 273 cpfseq EEDATA |
197 | 274 bra restart_3_test_apnoe_mode; check for apnoe mode |
275 bsf FLAG_const_ppO2_mode ; Set flag for ppO2 mode | |
276 return ; start in Surfacemode | |
0 | 277 restart_3_test_apnoe_mode: |
197 | 278 movlw d'3' ; Apnoe mode |
0 | 279 cpfseq EEDATA |
197 | 280 bra restart_4_test_gf_mode ; check for GF OC mode |
281 bsf FLAG_apnoe_mode ; Set flag for Apnoe Mode | |
282 bsf no_deco_customviews ; Set no-deco-mode-flag | |
283 return ; start in Surfacemode | |
0 | 284 restart_4_test_gf_mode: |
197 | 285 movlw d'4' ; GF OC mode |
0 | 286 cpfseq EEDATA |
197 | 287 bra restart_5_test_gfO2_mode ; check for GF CC mode |
0 | 288 movlw d'1' |
197 | 289 movff WREG,char_I_deco_model ; Set Flagbyte for GF method |
45 | 290 ; Load GF values into RAM |
197 | 291 GETCUSTOM8 d'32' ; GF low |
292 movff EEDATA,char_I_GF_Low_percentage | |
293 GETCUSTOM8 d'33' ; GF high | |
294 movff EEDATA,char_I_GF_High_percentage | |
295 return ; start in Surfacemode | |
0 | 296 restart_5_test_gfO2_mode: |
197 | 297 movlw d'5' ; GF CC mode |
0 | 298 cpfseq EEDATA |
197 | 299 return ; Start in Surfacemode |
300 bsf FLAG_const_ppO2_mode ; Set flag for ppO2 mode | |
0 | 301 movlw d'1' |
197 | 302 movff WREG,char_I_deco_model ; Set Flagbyte for GF method |
137 | 303 ; Load GF values into RAM |
197 | 304 GETCUSTOM8 d'32' ; GF low |
163 | 305 movff EEDATA,char_I_GF_Low_percentage |
197 | 306 GETCUSTOM8 d'33' ; GF high |
163 | 307 movff EEDATA,char_I_GF_High_percentage |
197 | 308 return ; start in Surfacemode |
309 | |
310 ;============================================================================= | |
0 | 311 |
312 startup_screen1: | |
313 call PLED_ClearScreen | |
314 call PLED_startupscreen1 ; show startup sreen | |
315 startup_screen1_2: | |
316 movlw d'10' ; timeout for startup screen | |
317 movwf temp1 | |
318 WAITMS d'200' | |
319 bcf switch_left | |
320 bcf switch_right | |
321 screen1_loop: | |
337 | 322 btfsc uart_dump_screen ; Asked to dump screen contains ? |
323 call dump_screen ; Yes! | |
324 | |
0 | 325 btfsc onesecupdate ; do every second tasks? |
326 call set_dive_modes ; tests if depth>threshold | |
327 btfsc onesecupdate ; do every second tasks? | |
328 decf temp1,F | |
329 bcf onesecupdate ; every second tasks done | |
330 | |
331 tstfsz temp1 ; timout occured? | |
332 bra screen1_loop2 ; no | |
333 return | |
334 | |
335 screen1_loop2: | |
336 btfsc divemode ; Divemode active? | |
337 return | |
338 btfsc switch_left ; Ack? | |
339 return | |
340 btfsc switch_right ; Ack? | |
341 return | |
342 bra screen1_loop ; loop screen | |
343 | |
344 startup_screen2: | |
345 call PLED_ClearScreen ; Page 1 | |
346 call PLED_startupscreen2 ; show startup sreen | |
347 bra startup_screen1_2 | |
348 | |
349 startup_screen3a:; WARNING: Also used for decodescriptions and CF Warning screen! | |
350 movwf temp1 | |
351 WAITMS d'200' | |
352 bcf switch_left | |
353 bcf switch_right | |
354 screen3_loop: | |
337 | 355 btfsc uart_dump_screen ; Asked to dump screen contains ? |
356 call dump_screen ; Yes! | |
357 | |
0 | 358 btfsc onesecupdate ; do every second tasks? |
359 call set_dive_modes ; tests if depth>threshold | |
360 | |
361 btfsc onesecupdate ; do every second tasks? | |
362 decf temp1,F | |
363 bcf onesecupdate ; every second tasks done | |
364 | |
365 tstfsz temp1 ; timout occured? | |
366 bra screen3_loop2 ; no | |
367 return | |
368 screen3_loop2: | |
369 btfsc switch_left ; Ack? | |
370 return | |
371 btfsc switch_right ; Ack? | |
372 return | |
373 bra screen3_loop ; loop screen | |
374 | |
337 | 375 ;============================================================================= |
376 | |
306 | 377 first_start: |
378 movlw max_custom_number ; Defined in definitions.asm | |
379 movwf EEDATA | |
380 write_int_eeprom d'92' ; Store number of CF used in this firmware | |
381 bra start3 ; continue with normal start | |
382 | |
0 | 383 init: |
384 movlw b'01101100' ; 4MHz (x4 PLL) | |
385 movwf OSCCON | |
386 | |
387 movlw b'00010001' ; I/O Ports | |
388 movwf TRISA | |
389 clrf PORTA | |
390 movlw b'00000011' | |
391 movwf TRISB | |
392 clrf PORTB | |
393 movlw b'11011101' ; UART | |
394 movwf TRISC | |
395 clrf PORTC | |
396 movlw b'00000000' | |
397 movwf TRISE | |
398 clrf PORTE | |
399 movlw b'00000000' | |
400 movwf TRISD | |
401 clrf PORTD | |
402 | |
403 movlw b'01000000' ; Bit6: PPL enable | |
404 movwf OSCTUNE | |
405 | |
406 movlw b'00011111' ; Timer0 | |
407 movwf T0CON | |
408 | |
409 movlw b'00000111' ; Timer1 | |
410 movwf T1CON | |
411 | |
412 movlw b'11010000' ; Interrups | |
413 movwf INTCON | |
414 movlw b'00000101' | |
415 movwf INTCON2 | |
416 movlw b'00001000' | |
417 movwf INTCON3 | |
418 movlw b'00100001' | |
419 movwf PIE1 | |
420 movlw b'00000000' | |
421 movwf PIE2 | |
422 clrf RCON | |
423 | |
424 movlw b'00000000' ; A/D Converter | |
425 movwf ADCON0 | |
426 movlw b'00001110' | |
427 movwf ADCON1 | |
428 movlw b'10001010' ; Right justified | |
429 movwf ADCON2 | |
430 | |
431 clrf SSPCON1 ; Set I²C Mode | |
432 movlw b'00000000' | |
433 movwf SSPSTAT | |
434 movlw b'00101000' | |
435 movwf SSPCON1 | |
436 movlw b'00000000' | |
437 movwf SSPCON2 | |
438 movlw d'8' ; 400kHz I2C clock @ 16MHz Fcy | |
439 movwf SSPADD | |
440 | |
441 clrf CCP1CON ; PWM Module off | |
442 clrf ECCP1CON ; PWM Module off | |
443 | |
444 movlw b'00000111' ; Comperator Module off | |
445 movwf CMCON | |
446 | |
447 movlw b'00100000' | |
448 movwf CANCON ; ECAN Module OFF | |
449 | |
450 movlw b'00100100' ; UART | |
451 movwf TXSTA | |
452 movlw b'10010000' | |
453 movwf RCSTA | |
454 movlw b'00001000' | |
455 movwf BAUDCON | |
456 clrf SPBRGH | |
457 movlw d'34' | |
458 movwf SPBRG | |
459 clrf RCREG | |
460 clrf PIR1 | |
461 return |