Quote Originally Posted by mpardinho
i use 2 circuits

1 - 16F628
1 - Transmiter

2 - 16F628
2 - Receive

1 - code - Transmit
T1 = "["
T2 = "]"

start:
For A = 1 to 10
SEROUT SERIAL_OUT, T2400, [T1, T2, A]
next
goto start

2 - code - Receive

start:
SERIN SER_IN, T1200, DAdos
SEROUT SER_OUT, T1200, [DAdos, 13, 10]
goto start


my problem is than in receive,
Dados = "["
i not receive "[", "]", A
in hyperterminal i receivce 10 caracter "["


i use this code for test http://www.rentron.com/Stamp_RF.htm


You send 3 numbers and only receive one...how's that going to work?
You send at 2400, receive at 1200...how's that going to work?
Also, I don't see anything set up to synchronize the receiver, nothing relating to manchester encoding your data, and I could go on.
Read thru the example at Rentron's site a bit more before you start in again.
JDG