This repository was archived by the owner on May 16, 2019. It is now read-only.

Description
Using C++, most AT commands work fine. Testing with the XBee 1 10.c++ sample, but changing the command to "SH" or "SL" gives a timeout.
// Works fine:
/* send data */
//con.Tx("NI"); /* like this */
con << "NI"; /* or like this */
// ...
// Timeout:
/* send data */
//con.Tx("NI"); /* like this */
con << "SH"; /* or like this */
// ...