Hello,

My code is:

;##################################
DEFINE OSC 8
OSCCON = %01110000

ASM
__CONFIG _CONFIG1L, _PLLDIV_2_1L ; Divide by 2 (8 MHz oscillator input)
__CONFIG _CONFIG1H, _FOSC_HS_1H
__CONFIG _CONFIG2H, _WDT_OFF_2H & _WDTPS_512_2H
__CONFIG _CONFIG3H, _PBADEN_OFF_3H & _MCLRE_OFF_3H
__CONFIG _CONFIG4L, _LVP_OFF_4L
ENDASM

include "modedefs.bas"
ADCON1 = 15 ' Set all I/Os to Digital
CMCON = 7 ' Disable Comparators

Main:
pause 100
high Led_1
Serout2 Portc.1,84,["Test",10,12]
pause 200
Goto Main
End
;##################################

I'm using a 8MHz Cristal, and define it at the begining of the program. The 84 at serout command is for 9600, but it sends the text at 2400...

Anyone understand why?

Thanks,
Nuno