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