hard to see the red bits doing anything of value except to cause framing errors
you could add the blue bits to prevent framing errors @ startup
Code:
COMMTX VAR PORTA.2 MESLED VAR PORTB.5 'MESSAGE LED
PreAmble CON $A5
'*****************************************************************************
INIT:
PORTA=000000
PORTB=000000
PORTC=000000
HIGH COMMTX
pause 10
GOTO START
'*****************************************************************************
START:
HIGH INTLED
HIGH COMMTX
PAUSE 500
LOW COMMTX
LOW INTLED
PAUSE 200
HIGH MESLED
debug PreAmble,$af,$c2,$b5,$ef,13,10
PAUSE 500
LOW MESLED
PAUSE 4000
GOTO START
if you use a viable pin on the rx unit it for debug will work , its not a way i would recommend
Bookmarks