#chip 16F767, 12 'mhz
#config MCLRE=off, WDT=off
lcdcon = 0
dir portc.7 in 'serial in
dir portc.6 out 'serial out
#define USART_BLOCKING
#define USART_BAUD_RATE 9600 'the speed you want
InitUsart
Start:
HSerPrint "Test"
wait 3 s
goto start
but i get nothing, it compiles fine though
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
here is what i have to test:
#chip 16F767, 12 'mhz
#config MCLRE=off, WDT=off
lcdcon = 0
dir portc.7 in 'serial in
dir portc.6 out 'serial out
#define USART_BLOCKING
#define USART_BAUD_RATE 9600 'the speed you want
InitUsart
Start:
HSerPrint "Test"
wait 3 s
goto start
but i get nothing, it compiles fine though