Hello everyone,
I have a problem with a project of mine.
I am using 2 XBee Pro 868 in Transparentmode, one Connected to an IBoard, the other one to a Arduino FIO clone. The Fio is part of a handheld remote control, the IBoard is receiving and sending received data an Ethernet.
The Problem is, that after some time/sent bytes, the XBee on the FIO which is the transmitting one stops sending data. After some research on google i found that this might be connected to a too high Baudrate, so i tried different baudrates, but it still stopped sending. I Also tested this with a simple Serial.sSend Arduino Programm to make sure it is not a bug in my Control Programm.
The Arduino Code:
void setup()
{
Serial.beginn(9600);
}
void loop()
{
Serial.print("hello ");
delay(200;
}
I tested with the following baudrates:
2400
4800
9600
19200
56700
The XBees config is:
XBP08-DP_1061.xml
1234
A
3
0
2
0
FFFF
0x20
82
0
60000
0
6
0
0
3
1
0
13F
0
0
1
0
0
0
0
1
0
1
1
0
0
1
0
0
0
28
7F7F
0
0
1
64
3E8
2B
0
0
0
1
C8
7D0
I also tried changing the UART Treshold (Setting it to 16F) and Packetization Timeout (setting it to 0) butthis didnt fix it either.
Can Anybody help me with this, or is there someone who could think of something causing this?
Thanks in Advance
Lukas