Connection are good on serial!
I can get the 628 to blink led without connecting to max232 with that code....
' Example program to blink an LED connected to PORTA.0 about
' once a second
'DEFINE LOADER_USED 1
'DEFINE OSC 4
trisA.0 = 0
x var byte
led var porta.0
loop:
x=1 ' Turn on LED connected to PORTB.0
led=x
Pause 500 ' Delay for .5 seconds
x=0 ' Turn on LED connected to PORTB.0
led=x ' Turn off LED connected to PORTB.0
Pause 500 ' Delay for .5 seconds
Goto loop ' Go back to loop and blink LED forever
End
To get RX and TX working on 628 should i put line in code to get it to send and receive or ICD complile does it for me....
Bookmarks