XBee Received Data Is Not Transfering to BS2.
tombutler
Posts: 5
Set up: Propeller Activity Board control node running C to the main XBee (MXBee) module. The remote node is an XBee (RXBee) interfaced with BS2 Stamp running PBasic. I am using XCTU connected to the remote XBee (RXBee) USB adapter board. ( Propeller -> MXBee ~~~~~>RXBee ->BS2)
The control node sends a character via XBee to the remote node. Problem - The remote node STAMP does not receive or display the received character. I do know that the remote XBee is receiving the control nodes character as seen on XCTU. No display on the STAMP terminal. If I type a character in the XCTU console it is displayed on the STAMP console as planned. Based on the above I believe the Software on the Propeller and Stamp is okay.
Both XBee's are in the pass through mode (not API). I am self-learning this technology but I need some help figuring this out.
Thanks,
Tom
The control node sends a character via XBee to the remote node. Problem - The remote node STAMP does not receive or display the received character. I do know that the remote XBee is receiving the control nodes character as seen on XCTU. No display on the STAMP terminal. If I type a character in the XCTU console it is displayed on the STAMP console as planned. Based on the above I believe the Software on the Propeller and Stamp is okay.
Both XBee's are in the pass through mode (not API). I am self-learning this technology but I need some help figuring this out.
Thanks,
Tom
Comments
SERIN rx, baud,[DataIn]
You should add flow control as follows (see the Reference Manual's description for details):
SERIN rx\rts, baud,[DataIn]
Block diagram of the system is attached along with a screen shot and code for both the main and remote processors. Thanks again for your help
Thanks again for your help.