Hey all, can someone please show me how to successfully send a byte of data from one PIC to another PIC. Im using the SERIN and SEROUT commands but it doesnt seem like I'm doing it right. I get garbage results on the other end. Thanks for your help. This is the code I'm using:

'TX PIC:
Include "modedefs.bas"
pause 1000
SEROUT 0, T2400,[%11100010]
END

'RX PIC:
SERIN 3,T2400,10000,error,RX 'wait for signal for 10 seconds
LCDout #RX
goto finish

error:
LCDout $fe, 1 'clear screen
LCDout $fe, 2 'return home
Lcdout "Error"

finish:
end