#include <XBee.h>
Public Member Functions | |
AtCommandRequest (uint8_t *command) | |
AtCommandRequest (uint8_t *command, uint8_t *commandValue, uint8_t commandValueLength) | |
uint8_t | getFrameData (uint8_t pos) |
Starting after the frame id (pos = 0) and up to but not including the checksum Note: Unlike Digi's definition of the frame data, this does not start with the API ID. | |
uint8_t | getFrameDataLength () |
Returns the size of the api frame (not including frame id or api id or checksum). | |
uint8_t * | getCommand () |
void | setCommand (uint8_t *command) |
uint8_t * | getCommandValue () |
void | setCommandValue (uint8_t *command) |
uint8_t | getCommandValueLength () |
void | setCommandValueLength (uint8_t length) |
void | clearCommandValue () |
Clears the optional commandValue and commandValueLength so that a query may be sent. |
uint8_t AtCommandRequest::getFrameData | ( | uint8_t | pos | ) | [virtual] |
Starting after the frame id (pos = 0) and up to but not including the checksum Note: Unlike Digi's definition of the frame data, this does not start with the API ID.
The reason for this is the API ID and Frame ID are common to all requests, whereas my definition of frame data is only the API specific data.
Implements XBeeRequest.
Reimplemented in RemoteAtCommandRequest.