XBee-mbed library Forked from http://mbed.org/users/okini3939/notebook/xbee-mbed/
Fork of XBee by
XBee.h@6:6f84e2840408, 2013-12-18 (annotated)
- Committer:
- okini3939
- Date:
- Wed Dec 18 02:24:33 2013 +0000
- Revision:
- 6:6f84e2840408
- Parent:
- 4:f6d73acc1f75
add XBee_conf.h
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
okini3939 | 1:e3b2027e685c | 1 | /** |
okini3939 | 1:e3b2027e685c | 2 | * XBee-mbed library |
okini3939 | 1:e3b2027e685c | 3 | * Modified for mbed, 2011 Suga. |
okini3939 | 1:e3b2027e685c | 4 | * |
okini3939 | 1:e3b2027e685c | 5 | * |
okini3939 | 1:e3b2027e685c | 6 | * Copyright (c) 2009 Andrew Rapp. All rights reserved. |
okini3939 | 1:e3b2027e685c | 7 | * |
okini3939 | 1:e3b2027e685c | 8 | * This file is part of XBee-Arduino. |
okini3939 | 1:e3b2027e685c | 9 | * |
okini3939 | 1:e3b2027e685c | 10 | * XBee-Arduino is free software: you can redistribute it and/or modify |
okini3939 | 1:e3b2027e685c | 11 | * it under the terms of the GNU General Public License as published by |
okini3939 | 1:e3b2027e685c | 12 | * the Free Software Foundation, either version 3 of the License, or |
okini3939 | 1:e3b2027e685c | 13 | * (at your option) any later version. |
okini3939 | 1:e3b2027e685c | 14 | * |
okini3939 | 1:e3b2027e685c | 15 | * XBee-Arduino is distributed in the hope that it will be useful, |
okini3939 | 1:e3b2027e685c | 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
okini3939 | 1:e3b2027e685c | 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
okini3939 | 1:e3b2027e685c | 18 | * GNU General Public License for more details. |
okini3939 | 1:e3b2027e685c | 19 | * |
okini3939 | 1:e3b2027e685c | 20 | * You should have received a copy of the GNU General Public License |
okini3939 | 1:e3b2027e685c | 21 | * along with XBee-Arduino. If not, see <http://www.gnu.org/licenses/>. |
okini3939 | 1:e3b2027e685c | 22 | */ |
okini3939 | 1:e3b2027e685c | 23 | |
okini3939 | 3:8573b122fa84 | 24 | /** @file |
okini3939 | 3:8573b122fa84 | 25 | * @brief XBee library for mbed |
okini3939 | 3:8573b122fa84 | 26 | */ |
okini3939 | 3:8573b122fa84 | 27 | |
okini3939 | 6:6f84e2840408 | 28 | #include "XBee_conf.h" |
okini3939 | 6:6f84e2840408 | 29 | |
okini3939 | 1:e3b2027e685c | 30 | #ifndef XBee_h |
okini3939 | 1:e3b2027e685c | 31 | #define XBee_h |
okini3939 | 1:e3b2027e685c | 32 | |
okini3939 | 1:e3b2027e685c | 33 | #include "mbed.h" |
okini3939 | 1:e3b2027e685c | 34 | #include <inttypes.h> |
okini3939 | 1:e3b2027e685c | 35 | |
okini3939 | 1:e3b2027e685c | 36 | #define SERIES_1 |
okini3939 | 1:e3b2027e685c | 37 | #define SERIES_2 |
okini3939 | 4:f6d73acc1f75 | 38 | #define WIFI |
okini3939 | 1:e3b2027e685c | 39 | |
okini3939 | 1:e3b2027e685c | 40 | // set to ATAP value of XBee. AP=2 is recommended |
okini3939 | 1:e3b2027e685c | 41 | #define ATAP 2 |
okini3939 | 1:e3b2027e685c | 42 | |
okini3939 | 1:e3b2027e685c | 43 | #define START_BYTE 0x7e |
okini3939 | 1:e3b2027e685c | 44 | #define ESCAPE 0x7d |
okini3939 | 1:e3b2027e685c | 45 | #define XON 0x11 |
okini3939 | 1:e3b2027e685c | 46 | #define XOFF 0x13 |
okini3939 | 1:e3b2027e685c | 47 | |
okini3939 | 1:e3b2027e685c | 48 | // This value determines the size of the byte array for receiving RX packets |
okini3939 | 1:e3b2027e685c | 49 | // Most users won't be dealing with packets this large so you can adjust this |
okini3939 | 1:e3b2027e685c | 50 | // value to reduce memory consumption. But, remember that |
okini3939 | 1:e3b2027e685c | 51 | // if a RX packet exceeds this size, it cannot be parsed! |
okini3939 | 1:e3b2027e685c | 52 | |
okini3939 | 1:e3b2027e685c | 53 | // This value is determined by the largest packet size (100 byte payload + 64-bit address + option byte and rssi byte) of a series 1 radio |
okini3939 | 4:f6d73acc1f75 | 54 | //#define MAX_FRAME_DATA_SIZE 110 |
okini3939 | 4:f6d73acc1f75 | 55 | #define MAX_FRAME_DATA_SIZE 1520 |
okini3939 | 4:f6d73acc1f75 | 56 | #define MAX_RXBUF_SIZE 32 |
okini3939 | 1:e3b2027e685c | 57 | |
okini3939 | 1:e3b2027e685c | 58 | #define BROADCAST_ADDRESS 0xffff |
okini3939 | 1:e3b2027e685c | 59 | #define ZB_BROADCAST_ADDRESS 0xfffe |
okini3939 | 1:e3b2027e685c | 60 | |
okini3939 | 1:e3b2027e685c | 61 | // the non-variable length of the frame data (not including frame id or api id or variable data size (e.g. payload, at command set value) |
okini3939 | 1:e3b2027e685c | 62 | #define ZB_TX_API_LENGTH 12 |
okini3939 | 1:e3b2027e685c | 63 | #define TX_16_API_LENGTH 3 |
okini3939 | 1:e3b2027e685c | 64 | #define TX_64_API_LENGTH 9 |
okini3939 | 1:e3b2027e685c | 65 | #define AT_COMMAND_API_LENGTH 2 |
okini3939 | 1:e3b2027e685c | 66 | #define REMOTE_AT_COMMAND_API_LENGTH 13 |
okini3939 | 1:e3b2027e685c | 67 | // start/length(2)/api/frameid/checksum bytes |
okini3939 | 1:e3b2027e685c | 68 | #define PACKET_OVERHEAD_LENGTH 6 |
okini3939 | 1:e3b2027e685c | 69 | // api is always the third byte in packet |
okini3939 | 1:e3b2027e685c | 70 | #define API_ID_INDEX 3 |
okini3939 | 1:e3b2027e685c | 71 | |
okini3939 | 1:e3b2027e685c | 72 | // frame position of rssi byte |
okini3939 | 1:e3b2027e685c | 73 | #define RX_16_RSSI_OFFSET 2 |
okini3939 | 1:e3b2027e685c | 74 | #define RX_64_RSSI_OFFSET 8 |
okini3939 | 1:e3b2027e685c | 75 | |
okini3939 | 1:e3b2027e685c | 76 | #define DEFAULT_FRAME_ID 1 |
okini3939 | 1:e3b2027e685c | 77 | #define NO_RESPONSE_FRAME_ID 0 |
okini3939 | 1:e3b2027e685c | 78 | |
okini3939 | 1:e3b2027e685c | 79 | // TODO put in tx16 class |
okini3939 | 1:e3b2027e685c | 80 | #define ACK_OPTION 0 |
okini3939 | 1:e3b2027e685c | 81 | #define DISABLE_ACK_OPTION 1 |
okini3939 | 1:e3b2027e685c | 82 | #define BROADCAST_OPTION 4 |
okini3939 | 1:e3b2027e685c | 83 | |
okini3939 | 1:e3b2027e685c | 84 | // RX options |
okini3939 | 1:e3b2027e685c | 85 | #define ZB_PACKET_ACKNOWLEDGED 0x01 |
okini3939 | 1:e3b2027e685c | 86 | #define ZB_BROADCAST_PACKET 0x02 |
okini3939 | 1:e3b2027e685c | 87 | |
okini3939 | 1:e3b2027e685c | 88 | // not everything is implemented! |
okini3939 | 1:e3b2027e685c | 89 | /** |
okini3939 | 1:e3b2027e685c | 90 | * Api Id constants |
okini3939 | 1:e3b2027e685c | 91 | */ |
okini3939 | 1:e3b2027e685c | 92 | #define TX_64_REQUEST 0x0 |
okini3939 | 1:e3b2027e685c | 93 | #define TX_16_REQUEST 0x1 |
okini3939 | 1:e3b2027e685c | 94 | #define AT_COMMAND_REQUEST 0x08 |
okini3939 | 1:e3b2027e685c | 95 | #define AT_COMMAND_QUEUE_REQUEST 0x09 |
okini3939 | 1:e3b2027e685c | 96 | #define REMOTE_AT_REQUEST 0x17 |
okini3939 | 1:e3b2027e685c | 97 | #define ZB_TX_REQUEST 0x10 |
okini3939 | 1:e3b2027e685c | 98 | #define ZB_EXPLICIT_TX_REQUEST 0x11 |
okini3939 | 1:e3b2027e685c | 99 | #define RX_64_RESPONSE 0x80 |
okini3939 | 1:e3b2027e685c | 100 | #define RX_16_RESPONSE 0x81 |
okini3939 | 1:e3b2027e685c | 101 | #define RX_64_IO_RESPONSE 0x82 |
okini3939 | 1:e3b2027e685c | 102 | #define RX_16_IO_RESPONSE 0x83 |
okini3939 | 1:e3b2027e685c | 103 | #define AT_RESPONSE 0x88 |
okini3939 | 1:e3b2027e685c | 104 | #define TX_STATUS_RESPONSE 0x89 |
okini3939 | 1:e3b2027e685c | 105 | #define MODEM_STATUS_RESPONSE 0x8a |
okini3939 | 1:e3b2027e685c | 106 | #define ZB_RX_RESPONSE 0x90 |
okini3939 | 1:e3b2027e685c | 107 | #define ZB_EXPLICIT_RX_RESPONSE 0x91 |
okini3939 | 1:e3b2027e685c | 108 | #define ZB_TX_STATUS_RESPONSE 0x8b |
okini3939 | 1:e3b2027e685c | 109 | #define ZB_IO_SAMPLE_RESPONSE 0x92 |
okini3939 | 1:e3b2027e685c | 110 | #define ZB_IO_NODE_IDENTIFIER_RESPONSE 0x95 |
okini3939 | 1:e3b2027e685c | 111 | #define AT_COMMAND_RESPONSE 0x88 |
okini3939 | 1:e3b2027e685c | 112 | #define REMOTE_AT_COMMAND_RESPONSE 0x97 |
okini3939 | 1:e3b2027e685c | 113 | |
okini3939 | 1:e3b2027e685c | 114 | |
okini3939 | 1:e3b2027e685c | 115 | /** |
okini3939 | 1:e3b2027e685c | 116 | * TX STATUS constants |
okini3939 | 1:e3b2027e685c | 117 | */ |
okini3939 | 1:e3b2027e685c | 118 | #define SUCCESS 0x0 |
okini3939 | 1:e3b2027e685c | 119 | #define CCA_FAILURE 0x2 |
okini3939 | 1:e3b2027e685c | 120 | #define INVALID_DESTINATION_ENDPOINT_SUCCESS 0x15 |
okini3939 | 1:e3b2027e685c | 121 | #define NETWORK_ACK_FAILURE 0x21 |
okini3939 | 1:e3b2027e685c | 122 | #define NOT_JOINED_TO_NETWORK 0x22 |
okini3939 | 1:e3b2027e685c | 123 | #define SELF_ADDRESSED 0x23 |
okini3939 | 1:e3b2027e685c | 124 | #define ADDRESS_NOT_FOUND 0x24 |
okini3939 | 1:e3b2027e685c | 125 | #define ROUTE_NOT_FOUND 0x25 |
okini3939 | 1:e3b2027e685c | 126 | #define PAYLOAD_TOO_LARGE 0x74 |
okini3939 | 1:e3b2027e685c | 127 | |
okini3939 | 1:e3b2027e685c | 128 | // modem status |
okini3939 | 1:e3b2027e685c | 129 | #define HARDWARE_RESET 0 |
okini3939 | 1:e3b2027e685c | 130 | #define WATCHDOG_TIMER_RESET 1 |
okini3939 | 1:e3b2027e685c | 131 | #define ASSOCIATED 2 |
okini3939 | 1:e3b2027e685c | 132 | #define DISASSOCIATED 3 |
okini3939 | 1:e3b2027e685c | 133 | #define SYNCHRONIZATION_LOST 4 |
okini3939 | 1:e3b2027e685c | 134 | #define COORDINATOR_REALIGNMENT 5 |
okini3939 | 1:e3b2027e685c | 135 | #define COORDINATOR_STARTED 6 |
okini3939 | 1:e3b2027e685c | 136 | |
okini3939 | 1:e3b2027e685c | 137 | #define ZB_BROADCAST_RADIUS_MAX_HOPS 0 |
okini3939 | 1:e3b2027e685c | 138 | |
okini3939 | 1:e3b2027e685c | 139 | #define ZB_TX_UNICAST 0 |
okini3939 | 1:e3b2027e685c | 140 | #define ZB_TX_BROADCAST 8 |
okini3939 | 1:e3b2027e685c | 141 | |
okini3939 | 1:e3b2027e685c | 142 | #define AT_OK 0 |
okini3939 | 1:e3b2027e685c | 143 | #define AT_ERROR 1 |
okini3939 | 1:e3b2027e685c | 144 | #define AT_INVALID_COMMAND 2 |
okini3939 | 1:e3b2027e685c | 145 | #define AT_INVALID_PARAMETER 3 |
okini3939 | 1:e3b2027e685c | 146 | #define AT_NO_RESPONSE 4 |
okini3939 | 1:e3b2027e685c | 147 | |
okini3939 | 1:e3b2027e685c | 148 | #define NO_ERROR 0 |
okini3939 | 1:e3b2027e685c | 149 | #define CHECKSUM_FAILURE 1 |
okini3939 | 1:e3b2027e685c | 150 | #define PACKET_EXCEEDS_BYTE_ARRAY_LENGTH 2 |
okini3939 | 1:e3b2027e685c | 151 | #define UNEXPECTED_START_BYTE 3 |
okini3939 | 1:e3b2027e685c | 152 | |
okini3939 | 1:e3b2027e685c | 153 | /** |
okini3939 | 1:e3b2027e685c | 154 | * The super class of all XBee responses (RX packets) |
okini3939 | 1:e3b2027e685c | 155 | * Users should never attempt to create an instance of this class; instead |
okini3939 | 1:e3b2027e685c | 156 | * create an instance of a subclass |
okini3939 | 1:e3b2027e685c | 157 | * It is recommend to reuse subclasses to conserve memory |
okini3939 | 1:e3b2027e685c | 158 | */ |
okini3939 | 1:e3b2027e685c | 159 | class XBeeResponse { |
okini3939 | 1:e3b2027e685c | 160 | public: |
okini3939 | 1:e3b2027e685c | 161 | //static const int MODEM_STATUS = 0x8a; |
okini3939 | 1:e3b2027e685c | 162 | /** |
okini3939 | 1:e3b2027e685c | 163 | * Default constructor |
okini3939 | 1:e3b2027e685c | 164 | */ |
okini3939 | 1:e3b2027e685c | 165 | XBeeResponse(); |
okini3939 | 1:e3b2027e685c | 166 | /** |
okini3939 | 1:e3b2027e685c | 167 | * Returns Api Id of the response |
okini3939 | 1:e3b2027e685c | 168 | */ |
okini3939 | 1:e3b2027e685c | 169 | uint8_t getApiId(); |
okini3939 | 1:e3b2027e685c | 170 | void setApiId(uint8_t apiId); |
okini3939 | 1:e3b2027e685c | 171 | /** |
okini3939 | 1:e3b2027e685c | 172 | * Returns the MSB length of the packet |
okini3939 | 1:e3b2027e685c | 173 | */ |
okini3939 | 1:e3b2027e685c | 174 | uint8_t getMsbLength(); |
okini3939 | 1:e3b2027e685c | 175 | void setMsbLength(uint8_t msbLength); |
okini3939 | 1:e3b2027e685c | 176 | /** |
okini3939 | 1:e3b2027e685c | 177 | * Returns the LSB length of the packet |
okini3939 | 1:e3b2027e685c | 178 | */ |
okini3939 | 1:e3b2027e685c | 179 | uint8_t getLsbLength(); |
okini3939 | 1:e3b2027e685c | 180 | void setLsbLength(uint8_t lsbLength); |
okini3939 | 1:e3b2027e685c | 181 | /** |
okini3939 | 1:e3b2027e685c | 182 | * Returns the packet checksum |
okini3939 | 1:e3b2027e685c | 183 | */ |
okini3939 | 1:e3b2027e685c | 184 | uint8_t getChecksum(); |
okini3939 | 1:e3b2027e685c | 185 | void setChecksum(uint8_t checksum); |
okini3939 | 1:e3b2027e685c | 186 | /** |
okini3939 | 1:e3b2027e685c | 187 | * Returns the length of the frame data: all bytes after the api id, and prior to the checksum |
okini3939 | 1:e3b2027e685c | 188 | * Note up to release 0.1.2, this was incorrectly including the checksum in the length. |
okini3939 | 1:e3b2027e685c | 189 | */ |
okini3939 | 4:f6d73acc1f75 | 190 | uint16_t getFrameDataLength(); |
okini3939 | 1:e3b2027e685c | 191 | void setFrameData(uint8_t* frameDataPtr); |
okini3939 | 1:e3b2027e685c | 192 | /** |
okini3939 | 1:e3b2027e685c | 193 | * Returns the buffer that contains the response. |
okini3939 | 1:e3b2027e685c | 194 | * Starts with byte that follows API ID and includes all bytes prior to the checksum |
okini3939 | 1:e3b2027e685c | 195 | * Length is specified by getFrameDataLength() |
okini3939 | 1:e3b2027e685c | 196 | * Note: Unlike Digi's definition of the frame data, this does not start with the API ID.. |
okini3939 | 1:e3b2027e685c | 197 | * The reason for this is all responses include an API ID, whereas my frame data |
okini3939 | 1:e3b2027e685c | 198 | * includes only the API specific data. |
okini3939 | 1:e3b2027e685c | 199 | */ |
okini3939 | 1:e3b2027e685c | 200 | uint8_t* getFrameData(); |
okini3939 | 1:e3b2027e685c | 201 | |
okini3939 | 4:f6d73acc1f75 | 202 | void setFrameLength(uint16_t frameLength); |
okini3939 | 1:e3b2027e685c | 203 | // to support future 65535 byte packets I guess |
okini3939 | 1:e3b2027e685c | 204 | /** |
okini3939 | 1:e3b2027e685c | 205 | * Returns the length of the packet |
okini3939 | 1:e3b2027e685c | 206 | */ |
okini3939 | 1:e3b2027e685c | 207 | uint16_t getPacketLength(); |
okini3939 | 1:e3b2027e685c | 208 | /** |
okini3939 | 1:e3b2027e685c | 209 | * Resets the response to default values |
okini3939 | 1:e3b2027e685c | 210 | */ |
okini3939 | 1:e3b2027e685c | 211 | void reset(); |
okini3939 | 1:e3b2027e685c | 212 | /** |
okini3939 | 1:e3b2027e685c | 213 | * Initializes the response |
okini3939 | 1:e3b2027e685c | 214 | */ |
okini3939 | 1:e3b2027e685c | 215 | void init(); |
okini3939 | 1:e3b2027e685c | 216 | #ifdef SERIES_2 |
okini3939 | 1:e3b2027e685c | 217 | /** |
okini3939 | 1:e3b2027e685c | 218 | * Call with instance of ZBTxStatusResponse class only if getApiId() == ZB_TX_STATUS_RESPONSE |
okini3939 | 1:e3b2027e685c | 219 | * to populate response |
okini3939 | 1:e3b2027e685c | 220 | */ |
okini3939 | 1:e3b2027e685c | 221 | void getZBTxStatusResponse(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 222 | /** |
okini3939 | 1:e3b2027e685c | 223 | * Call with instance of ZBRxResponse class only if getApiId() == ZB_RX_RESPONSE |
okini3939 | 1:e3b2027e685c | 224 | * to populate response |
okini3939 | 1:e3b2027e685c | 225 | */ |
okini3939 | 1:e3b2027e685c | 226 | void getZBRxResponse(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 227 | /** |
okini3939 | 1:e3b2027e685c | 228 | * Call with instance of ZBRxIoSampleResponse class only if getApiId() == ZB_IO_SAMPLE_RESPONSE |
okini3939 | 1:e3b2027e685c | 229 | * to populate response |
okini3939 | 1:e3b2027e685c | 230 | */ |
okini3939 | 1:e3b2027e685c | 231 | void getZBRxIoSampleResponse(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 232 | #endif |
okini3939 | 1:e3b2027e685c | 233 | #ifdef SERIES_1 |
okini3939 | 1:e3b2027e685c | 234 | /** |
okini3939 | 1:e3b2027e685c | 235 | * Call with instance of TxStatusResponse only if getApiId() == TX_STATUS_RESPONSE |
okini3939 | 1:e3b2027e685c | 236 | */ |
okini3939 | 1:e3b2027e685c | 237 | void getTxStatusResponse(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 238 | /** |
okini3939 | 1:e3b2027e685c | 239 | * Call with instance of Rx16Response only if getApiId() == RX_16_RESPONSE |
okini3939 | 1:e3b2027e685c | 240 | */ |
okini3939 | 1:e3b2027e685c | 241 | void getRx16Response(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 242 | /** |
okini3939 | 1:e3b2027e685c | 243 | * Call with instance of Rx64Response only if getApiId() == RX_64_RESPONSE |
okini3939 | 1:e3b2027e685c | 244 | */ |
okini3939 | 1:e3b2027e685c | 245 | void getRx64Response(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 246 | /** |
okini3939 | 1:e3b2027e685c | 247 | * Call with instance of Rx16IoSampleResponse only if getApiId() == RX_16_IO_RESPONSE |
okini3939 | 1:e3b2027e685c | 248 | */ |
okini3939 | 1:e3b2027e685c | 249 | void getRx16IoSampleResponse(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 250 | /** |
okini3939 | 1:e3b2027e685c | 251 | * Call with instance of Rx64IoSampleResponse only if getApiId() == RX_64_IO_RESPONSE |
okini3939 | 1:e3b2027e685c | 252 | */ |
okini3939 | 1:e3b2027e685c | 253 | void getRx64IoSampleResponse(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 254 | #endif |
okini3939 | 1:e3b2027e685c | 255 | /** |
okini3939 | 1:e3b2027e685c | 256 | * Call with instance of AtCommandResponse only if getApiId() == AT_COMMAND_RESPONSE |
okini3939 | 1:e3b2027e685c | 257 | */ |
okini3939 | 1:e3b2027e685c | 258 | void getAtCommandResponse(XBeeResponse &responses); |
okini3939 | 1:e3b2027e685c | 259 | /** |
okini3939 | 1:e3b2027e685c | 260 | * Call with instance of RemoteAtCommandResponse only if getApiId() == REMOTE_AT_COMMAND_RESPONSE |
okini3939 | 1:e3b2027e685c | 261 | */ |
okini3939 | 1:e3b2027e685c | 262 | void getRemoteAtCommandResponse(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 263 | /** |
okini3939 | 1:e3b2027e685c | 264 | * Call with instance of ModemStatusResponse only if getApiId() == MODEM_STATUS_RESPONSE |
okini3939 | 1:e3b2027e685c | 265 | */ |
okini3939 | 1:e3b2027e685c | 266 | void getModemStatusResponse(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 267 | /** |
okini3939 | 1:e3b2027e685c | 268 | * Returns true if the response has been successfully parsed and is complete and ready for use |
okini3939 | 1:e3b2027e685c | 269 | */ |
okini3939 | 1:e3b2027e685c | 270 | bool isAvailable(); |
okini3939 | 1:e3b2027e685c | 271 | void setAvailable(bool complete); |
okini3939 | 1:e3b2027e685c | 272 | /** |
okini3939 | 1:e3b2027e685c | 273 | * Returns true if the response contains errors |
okini3939 | 1:e3b2027e685c | 274 | */ |
okini3939 | 1:e3b2027e685c | 275 | bool isError(); |
okini3939 | 1:e3b2027e685c | 276 | /** |
okini3939 | 1:e3b2027e685c | 277 | * Returns an error code, or zero, if successful. |
okini3939 | 1:e3b2027e685c | 278 | * Error codes include: CHECKSUM_FAILURE, PACKET_EXCEEDS_BYTE_ARRAY_LENGTH, UNEXPECTED_START_BYTE |
okini3939 | 1:e3b2027e685c | 279 | */ |
okini3939 | 1:e3b2027e685c | 280 | uint8_t getErrorCode(); |
okini3939 | 1:e3b2027e685c | 281 | void setErrorCode(uint8_t errorCode); |
okini3939 | 1:e3b2027e685c | 282 | protected: |
okini3939 | 1:e3b2027e685c | 283 | // pointer to frameData |
okini3939 | 1:e3b2027e685c | 284 | uint8_t* _frameDataPtr; |
okini3939 | 1:e3b2027e685c | 285 | private: |
okini3939 | 1:e3b2027e685c | 286 | void setCommon(XBeeResponse &target); |
okini3939 | 1:e3b2027e685c | 287 | uint8_t _apiId; |
okini3939 | 1:e3b2027e685c | 288 | uint8_t _msbLength; |
okini3939 | 1:e3b2027e685c | 289 | uint8_t _lsbLength; |
okini3939 | 1:e3b2027e685c | 290 | uint8_t _checksum; |
okini3939 | 4:f6d73acc1f75 | 291 | uint16_t _frameLength; |
okini3939 | 1:e3b2027e685c | 292 | bool _complete; |
okini3939 | 1:e3b2027e685c | 293 | uint8_t _errorCode; |
okini3939 | 1:e3b2027e685c | 294 | }; |
okini3939 | 1:e3b2027e685c | 295 | |
okini3939 | 1:e3b2027e685c | 296 | class XBeeAddress { |
okini3939 | 1:e3b2027e685c | 297 | public: |
okini3939 | 1:e3b2027e685c | 298 | XBeeAddress(); |
okini3939 | 1:e3b2027e685c | 299 | }; |
okini3939 | 1:e3b2027e685c | 300 | |
okini3939 | 1:e3b2027e685c | 301 | /** |
okini3939 | 1:e3b2027e685c | 302 | * Represents a 64-bit XBee Address |
okini3939 | 1:e3b2027e685c | 303 | */ |
okini3939 | 1:e3b2027e685c | 304 | class XBeeAddress64 : public XBeeAddress { |
okini3939 | 1:e3b2027e685c | 305 | public: |
okini3939 | 1:e3b2027e685c | 306 | XBeeAddress64(uint32_t msb, uint32_t lsb); |
okini3939 | 1:e3b2027e685c | 307 | XBeeAddress64(); |
okini3939 | 1:e3b2027e685c | 308 | uint32_t getMsb(); |
okini3939 | 1:e3b2027e685c | 309 | uint32_t getLsb(); |
okini3939 | 1:e3b2027e685c | 310 | void setMsb(uint32_t msb); |
okini3939 | 1:e3b2027e685c | 311 | void setLsb(uint32_t lsb); |
okini3939 | 1:e3b2027e685c | 312 | private: |
okini3939 | 1:e3b2027e685c | 313 | uint32_t _msb; |
okini3939 | 1:e3b2027e685c | 314 | uint32_t _lsb; |
okini3939 | 1:e3b2027e685c | 315 | }; |
okini3939 | 1:e3b2027e685c | 316 | |
okini3939 | 1:e3b2027e685c | 317 | //class XBeeAddress16 : public XBeeAddress { |
okini3939 | 1:e3b2027e685c | 318 | //public: |
okini3939 | 1:e3b2027e685c | 319 | // XBeeAddress16(uint16_t addr); |
okini3939 | 1:e3b2027e685c | 320 | // XBeeAddress16(); |
okini3939 | 1:e3b2027e685c | 321 | // uint16_t getAddress(); |
okini3939 | 1:e3b2027e685c | 322 | // void setAddress(uint16_t addr); |
okini3939 | 1:e3b2027e685c | 323 | //private: |
okini3939 | 1:e3b2027e685c | 324 | // uint16_t _addr; |
okini3939 | 1:e3b2027e685c | 325 | //}; |
okini3939 | 1:e3b2027e685c | 326 | |
okini3939 | 1:e3b2027e685c | 327 | /** |
okini3939 | 1:e3b2027e685c | 328 | * This class is extended by all Responses that include a frame id |
okini3939 | 1:e3b2027e685c | 329 | */ |
okini3939 | 1:e3b2027e685c | 330 | class FrameIdResponse : public XBeeResponse { |
okini3939 | 1:e3b2027e685c | 331 | public: |
okini3939 | 1:e3b2027e685c | 332 | FrameIdResponse(); |
okini3939 | 1:e3b2027e685c | 333 | uint8_t getFrameId(); |
okini3939 | 1:e3b2027e685c | 334 | private: |
okini3939 | 1:e3b2027e685c | 335 | uint8_t _frameId; |
okini3939 | 1:e3b2027e685c | 336 | }; |
okini3939 | 1:e3b2027e685c | 337 | |
okini3939 | 1:e3b2027e685c | 338 | /** |
okini3939 | 1:e3b2027e685c | 339 | * Common functionality for both Series 1 and 2 data RX data packets |
okini3939 | 1:e3b2027e685c | 340 | */ |
okini3939 | 1:e3b2027e685c | 341 | class RxDataResponse : public XBeeResponse { |
okini3939 | 1:e3b2027e685c | 342 | public: |
okini3939 | 1:e3b2027e685c | 343 | RxDataResponse(); |
okini3939 | 1:e3b2027e685c | 344 | /** |
okini3939 | 1:e3b2027e685c | 345 | * Returns the specified index of the payload. The index may be 0 to getDataLength() - 1 |
okini3939 | 1:e3b2027e685c | 346 | * This method is deprecated; use uint8_t* getData() |
okini3939 | 1:e3b2027e685c | 347 | */ |
okini3939 | 1:e3b2027e685c | 348 | uint8_t getData(int index); |
okini3939 | 1:e3b2027e685c | 349 | /** |
okini3939 | 1:e3b2027e685c | 350 | * Returns the payload array. This may be accessed from index 0 to getDataLength() - 1 |
okini3939 | 1:e3b2027e685c | 351 | */ |
okini3939 | 1:e3b2027e685c | 352 | uint8_t* getData(); |
okini3939 | 1:e3b2027e685c | 353 | /** |
okini3939 | 1:e3b2027e685c | 354 | * Returns the length of the payload |
okini3939 | 1:e3b2027e685c | 355 | */ |
okini3939 | 4:f6d73acc1f75 | 356 | virtual uint16_t getDataLength() = 0; |
okini3939 | 1:e3b2027e685c | 357 | /** |
okini3939 | 1:e3b2027e685c | 358 | * Returns the position in the frame data where the data begins |
okini3939 | 1:e3b2027e685c | 359 | */ |
okini3939 | 1:e3b2027e685c | 360 | virtual uint8_t getDataOffset() = 0; |
okini3939 | 1:e3b2027e685c | 361 | }; |
okini3939 | 1:e3b2027e685c | 362 | |
okini3939 | 1:e3b2027e685c | 363 | // getResponse to return the proper subclass: |
okini3939 | 1:e3b2027e685c | 364 | // we maintain a pointer to each type of response, when a response is parsed, it is allocated only if NULL |
okini3939 | 1:e3b2027e685c | 365 | // can we allocate an object in a function? |
okini3939 | 1:e3b2027e685c | 366 | |
okini3939 | 1:e3b2027e685c | 367 | #ifdef SERIES_2 |
okini3939 | 1:e3b2027e685c | 368 | /** |
okini3939 | 1:e3b2027e685c | 369 | * Represents a Series 2 TX status packet |
okini3939 | 1:e3b2027e685c | 370 | */ |
okini3939 | 1:e3b2027e685c | 371 | class ZBTxStatusResponse : public FrameIdResponse { |
okini3939 | 1:e3b2027e685c | 372 | public: |
okini3939 | 1:e3b2027e685c | 373 | ZBTxStatusResponse(); |
okini3939 | 1:e3b2027e685c | 374 | uint16_t getRemoteAddress(); |
okini3939 | 1:e3b2027e685c | 375 | uint8_t getTxRetryCount(); |
okini3939 | 1:e3b2027e685c | 376 | uint8_t getDeliveryStatus(); |
okini3939 | 1:e3b2027e685c | 377 | uint8_t getDiscoveryStatus(); |
okini3939 | 1:e3b2027e685c | 378 | bool isSuccess(); |
okini3939 | 1:e3b2027e685c | 379 | }; |
okini3939 | 1:e3b2027e685c | 380 | |
okini3939 | 1:e3b2027e685c | 381 | /** |
okini3939 | 1:e3b2027e685c | 382 | * Represents a Series 2 RX packet |
okini3939 | 1:e3b2027e685c | 383 | */ |
okini3939 | 1:e3b2027e685c | 384 | class ZBRxResponse : public RxDataResponse { |
okini3939 | 1:e3b2027e685c | 385 | public: |
okini3939 | 1:e3b2027e685c | 386 | ZBRxResponse(); |
okini3939 | 1:e3b2027e685c | 387 | XBeeAddress64& getRemoteAddress64(); |
okini3939 | 1:e3b2027e685c | 388 | uint16_t getRemoteAddress16(); |
okini3939 | 1:e3b2027e685c | 389 | uint8_t getOption(); |
okini3939 | 4:f6d73acc1f75 | 390 | virtual uint16_t getDataLength(); |
okini3939 | 1:e3b2027e685c | 391 | // frame position where data starts |
okini3939 | 1:e3b2027e685c | 392 | virtual uint8_t getDataOffset(); |
okini3939 | 1:e3b2027e685c | 393 | private: |
okini3939 | 1:e3b2027e685c | 394 | XBeeAddress64 _remoteAddress64; |
okini3939 | 1:e3b2027e685c | 395 | }; |
okini3939 | 1:e3b2027e685c | 396 | |
okini3939 | 1:e3b2027e685c | 397 | /** |
okini3939 | 1:e3b2027e685c | 398 | * Represents a Series 2 RX I/O Sample packet |
okini3939 | 1:e3b2027e685c | 399 | */ |
okini3939 | 1:e3b2027e685c | 400 | class ZBRxIoSampleResponse : public ZBRxResponse { |
okini3939 | 1:e3b2027e685c | 401 | public: |
okini3939 | 1:e3b2027e685c | 402 | ZBRxIoSampleResponse(); |
okini3939 | 1:e3b2027e685c | 403 | bool containsAnalog(); |
okini3939 | 1:e3b2027e685c | 404 | bool containsDigital(); |
okini3939 | 1:e3b2027e685c | 405 | /** |
okini3939 | 1:e3b2027e685c | 406 | * Returns true if the pin is enabled |
okini3939 | 1:e3b2027e685c | 407 | */ |
okini3939 | 1:e3b2027e685c | 408 | bool isAnalogEnabled(uint8_t pin); |
okini3939 | 1:e3b2027e685c | 409 | /** |
okini3939 | 1:e3b2027e685c | 410 | * Returns true if the pin is enabled |
okini3939 | 1:e3b2027e685c | 411 | */ |
okini3939 | 1:e3b2027e685c | 412 | bool isDigitalEnabled(uint8_t pin); |
okini3939 | 1:e3b2027e685c | 413 | /** |
okini3939 | 1:e3b2027e685c | 414 | * Returns the 10-bit analog reading of the specified pin. |
okini3939 | 1:e3b2027e685c | 415 | * Valid pins include ADC:xxx. |
okini3939 | 1:e3b2027e685c | 416 | */ |
okini3939 | 1:e3b2027e685c | 417 | uint16_t getAnalog(uint8_t pin); |
okini3939 | 1:e3b2027e685c | 418 | /** |
okini3939 | 1:e3b2027e685c | 419 | * Returns true if the specified pin is high/on. |
okini3939 | 1:e3b2027e685c | 420 | * Valid pins include DIO:xxx. |
okini3939 | 1:e3b2027e685c | 421 | */ |
okini3939 | 1:e3b2027e685c | 422 | bool isDigitalOn(uint8_t pin); |
okini3939 | 1:e3b2027e685c | 423 | uint8_t getDigitalMaskMsb(); |
okini3939 | 1:e3b2027e685c | 424 | uint8_t getDigitalMaskLsb(); |
okini3939 | 1:e3b2027e685c | 425 | uint8_t getAnalogMask(); |
okini3939 | 1:e3b2027e685c | 426 | }; |
okini3939 | 1:e3b2027e685c | 427 | |
okini3939 | 1:e3b2027e685c | 428 | #endif |
okini3939 | 1:e3b2027e685c | 429 | |
okini3939 | 1:e3b2027e685c | 430 | #ifdef SERIES_1 |
okini3939 | 1:e3b2027e685c | 431 | /** |
okini3939 | 1:e3b2027e685c | 432 | * Represents a Series 1 TX Status packet |
okini3939 | 1:e3b2027e685c | 433 | */ |
okini3939 | 1:e3b2027e685c | 434 | class TxStatusResponse : public FrameIdResponse { |
okini3939 | 1:e3b2027e685c | 435 | public: |
okini3939 | 1:e3b2027e685c | 436 | TxStatusResponse(); |
okini3939 | 1:e3b2027e685c | 437 | uint8_t getStatus(); |
okini3939 | 1:e3b2027e685c | 438 | bool isSuccess(); |
okini3939 | 1:e3b2027e685c | 439 | }; |
okini3939 | 1:e3b2027e685c | 440 | |
okini3939 | 1:e3b2027e685c | 441 | /** |
okini3939 | 1:e3b2027e685c | 442 | * Represents a Series 1 RX packet |
okini3939 | 1:e3b2027e685c | 443 | */ |
okini3939 | 1:e3b2027e685c | 444 | class RxResponse : public RxDataResponse { |
okini3939 | 1:e3b2027e685c | 445 | public: |
okini3939 | 1:e3b2027e685c | 446 | RxResponse(); |
okini3939 | 1:e3b2027e685c | 447 | // remember rssi is negative but this is unsigned byte so it's up to you to convert |
okini3939 | 1:e3b2027e685c | 448 | uint8_t getRssi(); |
okini3939 | 1:e3b2027e685c | 449 | uint8_t getOption(); |
okini3939 | 1:e3b2027e685c | 450 | bool isAddressBroadcast(); |
okini3939 | 1:e3b2027e685c | 451 | bool isPanBroadcast(); |
okini3939 | 4:f6d73acc1f75 | 452 | virtual uint16_t getDataLength(); |
okini3939 | 1:e3b2027e685c | 453 | virtual uint8_t getDataOffset(); |
okini3939 | 1:e3b2027e685c | 454 | virtual uint8_t getRssiOffset() = 0; |
okini3939 | 1:e3b2027e685c | 455 | }; |
okini3939 | 1:e3b2027e685c | 456 | |
okini3939 | 1:e3b2027e685c | 457 | /** |
okini3939 | 1:e3b2027e685c | 458 | * Represents a Series 1 16-bit address RX packet |
okini3939 | 1:e3b2027e685c | 459 | */ |
okini3939 | 1:e3b2027e685c | 460 | class Rx16Response : public RxResponse { |
okini3939 | 1:e3b2027e685c | 461 | public: |
okini3939 | 1:e3b2027e685c | 462 | Rx16Response(); |
okini3939 | 1:e3b2027e685c | 463 | virtual uint8_t getRssiOffset(); |
okini3939 | 1:e3b2027e685c | 464 | uint16_t getRemoteAddress16(); |
okini3939 | 1:e3b2027e685c | 465 | protected: |
okini3939 | 1:e3b2027e685c | 466 | uint16_t _remoteAddress; |
okini3939 | 1:e3b2027e685c | 467 | }; |
okini3939 | 1:e3b2027e685c | 468 | |
okini3939 | 1:e3b2027e685c | 469 | /** |
okini3939 | 1:e3b2027e685c | 470 | * Represents a Series 1 64-bit address RX packet |
okini3939 | 1:e3b2027e685c | 471 | */ |
okini3939 | 1:e3b2027e685c | 472 | class Rx64Response : public RxResponse { |
okini3939 | 1:e3b2027e685c | 473 | public: |
okini3939 | 1:e3b2027e685c | 474 | Rx64Response(); |
okini3939 | 1:e3b2027e685c | 475 | virtual uint8_t getRssiOffset(); |
okini3939 | 1:e3b2027e685c | 476 | XBeeAddress64& getRemoteAddress64(); |
okini3939 | 1:e3b2027e685c | 477 | private: |
okini3939 | 1:e3b2027e685c | 478 | XBeeAddress64 _remoteAddress; |
okini3939 | 1:e3b2027e685c | 479 | }; |
okini3939 | 1:e3b2027e685c | 480 | |
okini3939 | 1:e3b2027e685c | 481 | /** |
okini3939 | 1:e3b2027e685c | 482 | * Represents a Series 1 RX I/O Sample packet |
okini3939 | 1:e3b2027e685c | 483 | */ |
okini3939 | 1:e3b2027e685c | 484 | class RxIoSampleBaseResponse : public RxResponse { |
okini3939 | 1:e3b2027e685c | 485 | public: |
okini3939 | 1:e3b2027e685c | 486 | RxIoSampleBaseResponse(); |
okini3939 | 1:e3b2027e685c | 487 | /** |
okini3939 | 1:e3b2027e685c | 488 | * Returns the number of samples in this packet |
okini3939 | 1:e3b2027e685c | 489 | */ |
okini3939 | 1:e3b2027e685c | 490 | uint8_t getSampleSize(); |
okini3939 | 1:e3b2027e685c | 491 | bool containsAnalog(); |
okini3939 | 1:e3b2027e685c | 492 | bool containsDigital(); |
okini3939 | 1:e3b2027e685c | 493 | /** |
okini3939 | 1:e3b2027e685c | 494 | * Returns true if the specified analog pin is enabled |
okini3939 | 1:e3b2027e685c | 495 | */ |
okini3939 | 1:e3b2027e685c | 496 | bool isAnalogEnabled(uint8_t pin); |
okini3939 | 1:e3b2027e685c | 497 | /** |
okini3939 | 1:e3b2027e685c | 498 | * Returns true if the specified digital pin is enabled |
okini3939 | 1:e3b2027e685c | 499 | */ |
okini3939 | 1:e3b2027e685c | 500 | bool isDigitalEnabled(uint8_t pin); |
okini3939 | 1:e3b2027e685c | 501 | /** |
okini3939 | 1:e3b2027e685c | 502 | * Returns the 10-bit analog reading of the specified pin. |
okini3939 | 1:e3b2027e685c | 503 | * Valid pins include ADC:0-5. Sample index starts at 0 |
okini3939 | 1:e3b2027e685c | 504 | */ |
okini3939 | 1:e3b2027e685c | 505 | uint16_t getAnalog(uint8_t pin, uint8_t sample); |
okini3939 | 1:e3b2027e685c | 506 | /** |
okini3939 | 1:e3b2027e685c | 507 | * Returns true if the specified pin is high/on. |
okini3939 | 1:e3b2027e685c | 508 | * Valid pins include DIO:0-8. Sample index starts at 0 |
okini3939 | 1:e3b2027e685c | 509 | */ |
okini3939 | 1:e3b2027e685c | 510 | bool isDigitalOn(uint8_t pin, uint8_t sample); |
okini3939 | 1:e3b2027e685c | 511 | uint8_t getSampleOffset(); |
okini3939 | 1:e3b2027e685c | 512 | private: |
okini3939 | 1:e3b2027e685c | 513 | }; |
okini3939 | 1:e3b2027e685c | 514 | |
okini3939 | 1:e3b2027e685c | 515 | class Rx16IoSampleResponse : public RxIoSampleBaseResponse { |
okini3939 | 1:e3b2027e685c | 516 | public: |
okini3939 | 1:e3b2027e685c | 517 | Rx16IoSampleResponse(); |
okini3939 | 1:e3b2027e685c | 518 | uint16_t getRemoteAddress16(); |
okini3939 | 1:e3b2027e685c | 519 | virtual uint8_t getRssiOffset(); |
okini3939 | 1:e3b2027e685c | 520 | |
okini3939 | 1:e3b2027e685c | 521 | }; |
okini3939 | 1:e3b2027e685c | 522 | |
okini3939 | 1:e3b2027e685c | 523 | class Rx64IoSampleResponse : public RxIoSampleBaseResponse { |
okini3939 | 1:e3b2027e685c | 524 | public: |
okini3939 | 1:e3b2027e685c | 525 | Rx64IoSampleResponse(); |
okini3939 | 1:e3b2027e685c | 526 | XBeeAddress64& getRemoteAddress64(); |
okini3939 | 1:e3b2027e685c | 527 | virtual uint8_t getRssiOffset(); |
okini3939 | 1:e3b2027e685c | 528 | private: |
okini3939 | 1:e3b2027e685c | 529 | XBeeAddress64 _remoteAddress; |
okini3939 | 1:e3b2027e685c | 530 | }; |
okini3939 | 1:e3b2027e685c | 531 | |
okini3939 | 1:e3b2027e685c | 532 | #endif |
okini3939 | 1:e3b2027e685c | 533 | |
okini3939 | 1:e3b2027e685c | 534 | /** |
okini3939 | 1:e3b2027e685c | 535 | * Represents a Modem Status RX packet |
okini3939 | 1:e3b2027e685c | 536 | */ |
okini3939 | 1:e3b2027e685c | 537 | class ModemStatusResponse : public XBeeResponse { |
okini3939 | 1:e3b2027e685c | 538 | public: |
okini3939 | 1:e3b2027e685c | 539 | ModemStatusResponse(); |
okini3939 | 1:e3b2027e685c | 540 | uint8_t getStatus(); |
okini3939 | 1:e3b2027e685c | 541 | }; |
okini3939 | 1:e3b2027e685c | 542 | |
okini3939 | 1:e3b2027e685c | 543 | /** |
okini3939 | 1:e3b2027e685c | 544 | * Represents an AT Command RX packet |
okini3939 | 1:e3b2027e685c | 545 | */ |
okini3939 | 1:e3b2027e685c | 546 | class AtCommandResponse : public FrameIdResponse { |
okini3939 | 1:e3b2027e685c | 547 | public: |
okini3939 | 1:e3b2027e685c | 548 | AtCommandResponse(); |
okini3939 | 1:e3b2027e685c | 549 | /** |
okini3939 | 1:e3b2027e685c | 550 | * Returns an array containing the two character command |
okini3939 | 1:e3b2027e685c | 551 | */ |
okini3939 | 1:e3b2027e685c | 552 | uint8_t* getCommand(); |
okini3939 | 1:e3b2027e685c | 553 | /** |
okini3939 | 1:e3b2027e685c | 554 | * Returns the command status code. |
okini3939 | 1:e3b2027e685c | 555 | * Zero represents a successful command |
okini3939 | 1:e3b2027e685c | 556 | */ |
okini3939 | 1:e3b2027e685c | 557 | uint8_t getStatus(); |
okini3939 | 1:e3b2027e685c | 558 | /** |
okini3939 | 1:e3b2027e685c | 559 | * Returns an array containing the command value. |
okini3939 | 1:e3b2027e685c | 560 | * This is only applicable to query commands. |
okini3939 | 1:e3b2027e685c | 561 | */ |
okini3939 | 1:e3b2027e685c | 562 | uint8_t* getValue(); |
okini3939 | 1:e3b2027e685c | 563 | /** |
okini3939 | 1:e3b2027e685c | 564 | * Returns the length of the command value array. |
okini3939 | 1:e3b2027e685c | 565 | */ |
okini3939 | 4:f6d73acc1f75 | 566 | uint16_t getValueLength(); |
okini3939 | 1:e3b2027e685c | 567 | /** |
okini3939 | 1:e3b2027e685c | 568 | * Returns true if status equals AT_OK |
okini3939 | 1:e3b2027e685c | 569 | */ |
okini3939 | 1:e3b2027e685c | 570 | bool isOk(); |
okini3939 | 1:e3b2027e685c | 571 | }; |
okini3939 | 1:e3b2027e685c | 572 | |
okini3939 | 1:e3b2027e685c | 573 | /** |
okini3939 | 1:e3b2027e685c | 574 | * Represents a Remote AT Command RX packet |
okini3939 | 1:e3b2027e685c | 575 | */ |
okini3939 | 1:e3b2027e685c | 576 | class RemoteAtCommandResponse : public AtCommandResponse { |
okini3939 | 1:e3b2027e685c | 577 | public: |
okini3939 | 1:e3b2027e685c | 578 | RemoteAtCommandResponse(); |
okini3939 | 1:e3b2027e685c | 579 | /** |
okini3939 | 1:e3b2027e685c | 580 | * Returns an array containing the two character command |
okini3939 | 1:e3b2027e685c | 581 | */ |
okini3939 | 1:e3b2027e685c | 582 | uint8_t* getCommand(); |
okini3939 | 1:e3b2027e685c | 583 | /** |
okini3939 | 1:e3b2027e685c | 584 | * Returns the command status code. |
okini3939 | 1:e3b2027e685c | 585 | * Zero represents a successful command |
okini3939 | 1:e3b2027e685c | 586 | */ |
okini3939 | 1:e3b2027e685c | 587 | uint8_t getStatus(); |
okini3939 | 1:e3b2027e685c | 588 | /** |
okini3939 | 1:e3b2027e685c | 589 | * Returns an array containing the command value. |
okini3939 | 1:e3b2027e685c | 590 | * This is only applicable to query commands. |
okini3939 | 1:e3b2027e685c | 591 | */ |
okini3939 | 1:e3b2027e685c | 592 | uint8_t* getValue(); |
okini3939 | 1:e3b2027e685c | 593 | /** |
okini3939 | 1:e3b2027e685c | 594 | * Returns the length of the command value array. |
okini3939 | 1:e3b2027e685c | 595 | */ |
okini3939 | 4:f6d73acc1f75 | 596 | uint16_t getValueLength(); |
okini3939 | 1:e3b2027e685c | 597 | /** |
okini3939 | 1:e3b2027e685c | 598 | * Returns the 16-bit address of the remote radio |
okini3939 | 1:e3b2027e685c | 599 | */ |
okini3939 | 1:e3b2027e685c | 600 | uint16_t getRemoteAddress16(); |
okini3939 | 1:e3b2027e685c | 601 | /** |
okini3939 | 1:e3b2027e685c | 602 | * Returns the 64-bit address of the remote radio |
okini3939 | 1:e3b2027e685c | 603 | */ |
okini3939 | 1:e3b2027e685c | 604 | XBeeAddress64& getRemoteAddress64(); |
okini3939 | 1:e3b2027e685c | 605 | /** |
okini3939 | 1:e3b2027e685c | 606 | * Returns true if command was successful |
okini3939 | 1:e3b2027e685c | 607 | */ |
okini3939 | 1:e3b2027e685c | 608 | bool isOk(); |
okini3939 | 1:e3b2027e685c | 609 | private: |
okini3939 | 1:e3b2027e685c | 610 | XBeeAddress64 _remoteAddress64; |
okini3939 | 1:e3b2027e685c | 611 | }; |
okini3939 | 1:e3b2027e685c | 612 | |
okini3939 | 1:e3b2027e685c | 613 | |
okini3939 | 1:e3b2027e685c | 614 | /** |
okini3939 | 1:e3b2027e685c | 615 | * Super class of all XBee requests (TX packets) |
okini3939 | 1:e3b2027e685c | 616 | * Users should never create an instance of this class; instead use an subclass of this class |
okini3939 | 1:e3b2027e685c | 617 | * It is recommended to reuse Subclasses of the class to conserve memory |
okini3939 | 1:e3b2027e685c | 618 | * <p/> |
okini3939 | 1:e3b2027e685c | 619 | * This class allocates a buffer to |
okini3939 | 1:e3b2027e685c | 620 | */ |
okini3939 | 1:e3b2027e685c | 621 | class XBeeRequest { |
okini3939 | 1:e3b2027e685c | 622 | public: |
okini3939 | 1:e3b2027e685c | 623 | /** |
okini3939 | 1:e3b2027e685c | 624 | * Constructor |
okini3939 | 1:e3b2027e685c | 625 | * TODO make protected |
okini3939 | 1:e3b2027e685c | 626 | */ |
okini3939 | 1:e3b2027e685c | 627 | XBeeRequest(uint8_t apiId, uint8_t frameId); |
okini3939 | 1:e3b2027e685c | 628 | /** |
okini3939 | 1:e3b2027e685c | 629 | * Sets the frame id. Must be between 1 and 255 inclusive to get a TX status response. |
okini3939 | 1:e3b2027e685c | 630 | */ |
okini3939 | 1:e3b2027e685c | 631 | void setFrameId(uint8_t frameId); |
okini3939 | 1:e3b2027e685c | 632 | /** |
okini3939 | 1:e3b2027e685c | 633 | * Returns the frame id |
okini3939 | 1:e3b2027e685c | 634 | */ |
okini3939 | 1:e3b2027e685c | 635 | uint8_t getFrameId(); |
okini3939 | 1:e3b2027e685c | 636 | /** |
okini3939 | 1:e3b2027e685c | 637 | * Returns the API id |
okini3939 | 1:e3b2027e685c | 638 | */ |
okini3939 | 1:e3b2027e685c | 639 | uint8_t getApiId(); |
okini3939 | 1:e3b2027e685c | 640 | // setting = 0 makes this a pure virtual function, meaning the subclass must implement, like abstract in java |
okini3939 | 1:e3b2027e685c | 641 | /** |
okini3939 | 1:e3b2027e685c | 642 | * Starting after the frame id (pos = 0) and up to but not including the checksum |
okini3939 | 1:e3b2027e685c | 643 | * Note: Unlike Digi's definition of the frame data, this does not start with the API ID. |
okini3939 | 1:e3b2027e685c | 644 | * The reason for this is the API ID and Frame ID are common to all requests, whereas my definition of |
okini3939 | 1:e3b2027e685c | 645 | * frame data is only the API specific data. |
okini3939 | 1:e3b2027e685c | 646 | */ |
okini3939 | 4:f6d73acc1f75 | 647 | virtual uint8_t getFrameData(uint16_t pos) = 0; |
okini3939 | 1:e3b2027e685c | 648 | /** |
okini3939 | 1:e3b2027e685c | 649 | * Returns the size of the api frame (not including frame id or api id or checksum). |
okini3939 | 1:e3b2027e685c | 650 | */ |
okini3939 | 4:f6d73acc1f75 | 651 | virtual uint16_t getFrameDataLength() = 0; |
okini3939 | 1:e3b2027e685c | 652 | //void reset(); |
okini3939 | 1:e3b2027e685c | 653 | protected: |
okini3939 | 1:e3b2027e685c | 654 | void setApiId(uint8_t apiId); |
okini3939 | 1:e3b2027e685c | 655 | private: |
okini3939 | 1:e3b2027e685c | 656 | uint8_t _apiId; |
okini3939 | 1:e3b2027e685c | 657 | uint8_t _frameId; |
okini3939 | 1:e3b2027e685c | 658 | }; |
okini3939 | 1:e3b2027e685c | 659 | |
okini3939 | 1:e3b2027e685c | 660 | // TODO add reset/clear method since responses are often reused |
okini3939 | 1:e3b2027e685c | 661 | /** |
okini3939 | 1:e3b2027e685c | 662 | * Primary interface for communicating with an XBee Radio. |
okini3939 | 1:e3b2027e685c | 663 | * This class provides methods for sending and receiving packets with an XBee radio via the serial port. |
okini3939 | 1:e3b2027e685c | 664 | * The XBee radio must be configured in API (packet) mode (AP=2) |
okini3939 | 1:e3b2027e685c | 665 | * in order to use this software. |
okini3939 | 1:e3b2027e685c | 666 | * <p/> |
okini3939 | 1:e3b2027e685c | 667 | * Since this code is designed to run on a microcontroller, with only one thread, you are responsible for reading the |
okini3939 | 1:e3b2027e685c | 668 | * data off the serial buffer in a timely manner. This involves a call to a variant of readPacket(...). |
okini3939 | 1:e3b2027e685c | 669 | * If your serial port is receiving data faster than you are reading, you can expect to lose packets. |
okini3939 | 1:e3b2027e685c | 670 | * Arduino only has a 128 byte serial buffer so it can easily overflow if two or more packets arrive |
okini3939 | 1:e3b2027e685c | 671 | * without a call to readPacket(...) |
okini3939 | 1:e3b2027e685c | 672 | * <p/> |
okini3939 | 1:e3b2027e685c | 673 | * In order to conserve resources, this class only supports storing one response packet in memory at a time. |
okini3939 | 1:e3b2027e685c | 674 | * This means that you must fully consume the packet prior to calling readPacket(...), because calling |
okini3939 | 1:e3b2027e685c | 675 | * readPacket(...) overwrites the previous response. |
okini3939 | 1:e3b2027e685c | 676 | * <p/> |
okini3939 | 1:e3b2027e685c | 677 | * This class creates an array of size MAX_FRAME_DATA_SIZE for storing the response packet. You may want |
okini3939 | 1:e3b2027e685c | 678 | * to adjust this value to conserve memory. |
okini3939 | 1:e3b2027e685c | 679 | * |
okini3939 | 1:e3b2027e685c | 680 | * \author Andrew Rapp |
okini3939 | 1:e3b2027e685c | 681 | */ |
okini3939 | 1:e3b2027e685c | 682 | class XBee { |
okini3939 | 1:e3b2027e685c | 683 | public: |
okini3939 | 1:e3b2027e685c | 684 | XBee(PinName p_tx, PinName p_rx); |
okini3939 | 4:f6d73acc1f75 | 685 | XBee(PinName p_tx, PinName p_rx, PinName p_cts, PinName p_rts); |
okini3939 | 1:e3b2027e685c | 686 | // for eclipse dev only |
okini3939 | 1:e3b2027e685c | 687 | // void setSerial(HardwareSerial serial); |
okini3939 | 1:e3b2027e685c | 688 | /** |
okini3939 | 1:e3b2027e685c | 689 | * Reads all available serial bytes until a packet is parsed, an error occurs, or the buffer is empty. |
okini3939 | 1:e3b2027e685c | 690 | * You may call <i>xbee</i>.getResponse().isAvailable() after calling this method to determine if |
okini3939 | 1:e3b2027e685c | 691 | * a packet is ready, or <i>xbee</i>.getResponse().isError() to determine if |
okini3939 | 1:e3b2027e685c | 692 | * a error occurred. |
okini3939 | 1:e3b2027e685c | 693 | * <p/> |
okini3939 | 1:e3b2027e685c | 694 | * This method should always return quickly since it does not wait for serial data to arrive. |
okini3939 | 1:e3b2027e685c | 695 | * You will want to use this method if you are doing other timely stuff in your loop, where |
okini3939 | 1:e3b2027e685c | 696 | * a delay would cause problems. |
okini3939 | 1:e3b2027e685c | 697 | * NOTE: calling this method resets the current response, so make sure you first consume the |
okini3939 | 1:e3b2027e685c | 698 | * current response |
okini3939 | 1:e3b2027e685c | 699 | */ |
okini3939 | 1:e3b2027e685c | 700 | void readPacket(); |
okini3939 | 1:e3b2027e685c | 701 | /** |
okini3939 | 1:e3b2027e685c | 702 | * Waits a maximum of <i>timeout</i> milliseconds for a response packet before timing out; returns true if packet is read. |
okini3939 | 1:e3b2027e685c | 703 | * Returns false if timeout or error occurs. |
okini3939 | 1:e3b2027e685c | 704 | */ |
okini3939 | 1:e3b2027e685c | 705 | bool readPacket(int timeout); |
okini3939 | 1:e3b2027e685c | 706 | /** |
okini3939 | 1:e3b2027e685c | 707 | * Reads until a packet is received or an error occurs. |
okini3939 | 1:e3b2027e685c | 708 | * Caution: use this carefully since if you don't get a response, your Arduino code will hang on this |
okini3939 | 1:e3b2027e685c | 709 | * call forever!! often it's better to use a timeout: readPacket(int) |
okini3939 | 1:e3b2027e685c | 710 | */ |
okini3939 | 1:e3b2027e685c | 711 | void readPacketUntilAvailable(); |
okini3939 | 1:e3b2027e685c | 712 | /** |
okini3939 | 1:e3b2027e685c | 713 | * Starts the serial connection at the supplied baud rate |
okini3939 | 1:e3b2027e685c | 714 | */ |
okini3939 | 1:e3b2027e685c | 715 | void begin(long baud); |
okini3939 | 1:e3b2027e685c | 716 | void getResponse(XBeeResponse &response); |
okini3939 | 1:e3b2027e685c | 717 | /** |
okini3939 | 1:e3b2027e685c | 718 | * Returns a reference to the current response |
okini3939 | 1:e3b2027e685c | 719 | * Note: once readPacket is called again this response will be overwritten! |
okini3939 | 1:e3b2027e685c | 720 | */ |
okini3939 | 1:e3b2027e685c | 721 | XBeeResponse& getResponse(); |
okini3939 | 1:e3b2027e685c | 722 | /** |
okini3939 | 1:e3b2027e685c | 723 | * Sends a XBeeRequest (TX packet) out the serial port |
okini3939 | 1:e3b2027e685c | 724 | */ |
okini3939 | 1:e3b2027e685c | 725 | void send(XBeeRequest &request); |
okini3939 | 1:e3b2027e685c | 726 | //uint8_t sendAndWaitForResponse(XBeeRequest &request, int timeout); |
okini3939 | 1:e3b2027e685c | 727 | /** |
okini3939 | 1:e3b2027e685c | 728 | * Returns a sequential frame id between 1 and 255 |
okini3939 | 1:e3b2027e685c | 729 | */ |
okini3939 | 1:e3b2027e685c | 730 | uint8_t getNextFrameId(); |
okini3939 | 4:f6d73acc1f75 | 731 | |
okini3939 | 4:f6d73acc1f75 | 732 | void isr_recv (); |
okini3939 | 4:f6d73acc1f75 | 733 | int getbuf (); |
okini3939 | 4:f6d73acc1f75 | 734 | int bufreadable (); |
okini3939 | 1:e3b2027e685c | 735 | private: |
okini3939 | 1:e3b2027e685c | 736 | void sendByte(uint8_t b, bool escape); |
okini3939 | 1:e3b2027e685c | 737 | void resetResponse(); |
okini3939 | 1:e3b2027e685c | 738 | XBeeResponse _response; |
okini3939 | 1:e3b2027e685c | 739 | bool _escape; |
okini3939 | 1:e3b2027e685c | 740 | // current packet position for response. just a state variable for packet parsing and has no relevance for the response otherwise |
okini3939 | 4:f6d73acc1f75 | 741 | uint16_t _pos, _epos; |
okini3939 | 1:e3b2027e685c | 742 | // last byte read |
okini3939 | 1:e3b2027e685c | 743 | uint8_t b; |
okini3939 | 4:f6d73acc1f75 | 744 | uint16_t _checksumTotal; |
okini3939 | 1:e3b2027e685c | 745 | uint8_t _nextFrameId; |
okini3939 | 1:e3b2027e685c | 746 | // buffer for incoming RX packets. holds only the api specific frame data, starting after the api id byte and prior to checksum |
okini3939 | 1:e3b2027e685c | 747 | uint8_t _responseFrameData[MAX_FRAME_DATA_SIZE]; |
okini3939 | 1:e3b2027e685c | 748 | Serial _xbee; |
okini3939 | 4:f6d73acc1f75 | 749 | char _rxbuf[MAX_RXBUF_SIZE]; |
okini3939 | 4:f6d73acc1f75 | 750 | int _rxaddr_w, _rxaddr_r; |
okini3939 | 4:f6d73acc1f75 | 751 | bool _rts; |
okini3939 | 1:e3b2027e685c | 752 | }; |
okini3939 | 1:e3b2027e685c | 753 | |
okini3939 | 1:e3b2027e685c | 754 | /** |
okini3939 | 1:e3b2027e685c | 755 | * All TX packets that support payloads extend this class |
okini3939 | 1:e3b2027e685c | 756 | */ |
okini3939 | 1:e3b2027e685c | 757 | class PayloadRequest : public XBeeRequest { |
okini3939 | 1:e3b2027e685c | 758 | public: |
okini3939 | 4:f6d73acc1f75 | 759 | PayloadRequest(uint8_t apiId, uint8_t frameId, uint8_t *payload, uint16_t payloadLength); |
okini3939 | 1:e3b2027e685c | 760 | /** |
okini3939 | 1:e3b2027e685c | 761 | * Returns the payload of the packet, if not null |
okini3939 | 1:e3b2027e685c | 762 | */ |
okini3939 | 1:e3b2027e685c | 763 | uint8_t* getPayload(); |
okini3939 | 1:e3b2027e685c | 764 | /** |
okini3939 | 1:e3b2027e685c | 765 | * Sets the payload array |
okini3939 | 1:e3b2027e685c | 766 | */ |
okini3939 | 1:e3b2027e685c | 767 | void setPayload(uint8_t* payloadPtr); |
okini3939 | 1:e3b2027e685c | 768 | /** |
okini3939 | 1:e3b2027e685c | 769 | * Returns the length of the payload array, as specified by the user. |
okini3939 | 1:e3b2027e685c | 770 | */ |
okini3939 | 4:f6d73acc1f75 | 771 | uint16_t getPayloadLength(); |
okini3939 | 1:e3b2027e685c | 772 | /** |
okini3939 | 1:e3b2027e685c | 773 | * Sets the length of the payload to include in the request. For example if the payload array |
okini3939 | 1:e3b2027e685c | 774 | * is 50 bytes and you only want the first 10 to be included in the packet, set the length to 10. |
okini3939 | 1:e3b2027e685c | 775 | * Length must be <= to the array length. |
okini3939 | 1:e3b2027e685c | 776 | */ |
okini3939 | 4:f6d73acc1f75 | 777 | void setPayloadLength(uint16_t payloadLength); |
okini3939 | 1:e3b2027e685c | 778 | private: |
okini3939 | 1:e3b2027e685c | 779 | uint8_t* _payloadPtr; |
okini3939 | 4:f6d73acc1f75 | 780 | uint16_t _payloadLength; |
okini3939 | 1:e3b2027e685c | 781 | }; |
okini3939 | 1:e3b2027e685c | 782 | |
okini3939 | 1:e3b2027e685c | 783 | #ifdef SERIES_1 |
okini3939 | 1:e3b2027e685c | 784 | |
okini3939 | 1:e3b2027e685c | 785 | /** |
okini3939 | 1:e3b2027e685c | 786 | * Represents a Series 1 TX packet that corresponds to Api Id: TX_16_REQUEST |
okini3939 | 1:e3b2027e685c | 787 | * <p/> |
okini3939 | 1:e3b2027e685c | 788 | * Be careful not to send a data array larger than the max packet size of your radio. |
okini3939 | 1:e3b2027e685c | 789 | * This class does not perform any validation of packet size and there will be no indication |
okini3939 | 1:e3b2027e685c | 790 | * if the packet is too large, other than you will not get a TX Status response. |
okini3939 | 1:e3b2027e685c | 791 | * The datasheet says 100 bytes is the maximum, although that could change in future firmware. |
okini3939 | 1:e3b2027e685c | 792 | */ |
okini3939 | 1:e3b2027e685c | 793 | class Tx16Request : public PayloadRequest { |
okini3939 | 1:e3b2027e685c | 794 | public: |
okini3939 | 4:f6d73acc1f75 | 795 | Tx16Request(uint16_t addr16, uint8_t option, uint8_t *payload, uint16_t payloadLength, uint8_t frameId); |
okini3939 | 1:e3b2027e685c | 796 | /** |
okini3939 | 1:e3b2027e685c | 797 | * Creates a Unicast Tx16Request with the ACK option and DEFAULT_FRAME_ID |
okini3939 | 1:e3b2027e685c | 798 | */ |
okini3939 | 4:f6d73acc1f75 | 799 | Tx16Request(uint16_t addr16, uint8_t *payload, uint16_t payloadLength); |
okini3939 | 1:e3b2027e685c | 800 | /** |
okini3939 | 1:e3b2027e685c | 801 | * Creates a default instance of this class. At a minimum you must specify |
okini3939 | 1:e3b2027e685c | 802 | * a payload, payload length and a destination address before sending this request. |
okini3939 | 1:e3b2027e685c | 803 | */ |
okini3939 | 1:e3b2027e685c | 804 | Tx16Request(); |
okini3939 | 1:e3b2027e685c | 805 | uint16_t getAddress16(); |
okini3939 | 1:e3b2027e685c | 806 | void setAddress16(uint16_t addr16); |
okini3939 | 1:e3b2027e685c | 807 | uint8_t getOption(); |
okini3939 | 1:e3b2027e685c | 808 | void setOption(uint8_t option); |
okini3939 | 4:f6d73acc1f75 | 809 | virtual uint8_t getFrameData(uint16_t pos); |
okini3939 | 4:f6d73acc1f75 | 810 | virtual uint16_t getFrameDataLength(); |
okini3939 | 1:e3b2027e685c | 811 | protected: |
okini3939 | 1:e3b2027e685c | 812 | private: |
okini3939 | 1:e3b2027e685c | 813 | uint16_t _addr16; |
okini3939 | 1:e3b2027e685c | 814 | uint8_t _option; |
okini3939 | 1:e3b2027e685c | 815 | }; |
okini3939 | 1:e3b2027e685c | 816 | |
okini3939 | 1:e3b2027e685c | 817 | /** |
okini3939 | 1:e3b2027e685c | 818 | * Represents a Series 1 TX packet that corresponds to Api Id: TX_64_REQUEST |
okini3939 | 1:e3b2027e685c | 819 | * |
okini3939 | 1:e3b2027e685c | 820 | * Be careful not to send a data array larger than the max packet size of your radio. |
okini3939 | 1:e3b2027e685c | 821 | * This class does not perform any validation of packet size and there will be no indication |
okini3939 | 1:e3b2027e685c | 822 | * if the packet is too large, other than you will not get a TX Status response. |
okini3939 | 1:e3b2027e685c | 823 | * The datasheet says 100 bytes is the maximum, although that could change in future firmware. |
okini3939 | 1:e3b2027e685c | 824 | */ |
okini3939 | 1:e3b2027e685c | 825 | class Tx64Request : public PayloadRequest { |
okini3939 | 1:e3b2027e685c | 826 | public: |
okini3939 | 4:f6d73acc1f75 | 827 | Tx64Request(XBeeAddress64 &addr64, uint8_t option, uint8_t *payload, uint16_t payloadLength, uint8_t frameId); |
okini3939 | 1:e3b2027e685c | 828 | /** |
okini3939 | 1:e3b2027e685c | 829 | * Creates a unicast Tx64Request with the ACK option and DEFAULT_FRAME_ID |
okini3939 | 1:e3b2027e685c | 830 | */ |
okini3939 | 4:f6d73acc1f75 | 831 | Tx64Request(XBeeAddress64 &addr64, uint8_t *payload, uint16_t payloadLength); |
okini3939 | 1:e3b2027e685c | 832 | /** |
okini3939 | 1:e3b2027e685c | 833 | * Creates a default instance of this class. At a minimum you must specify |
okini3939 | 1:e3b2027e685c | 834 | * a payload, payload length and a destination address before sending this request. |
okini3939 | 1:e3b2027e685c | 835 | */ |
okini3939 | 1:e3b2027e685c | 836 | Tx64Request(); |
okini3939 | 1:e3b2027e685c | 837 | XBeeAddress64& getAddress64(); |
okini3939 | 1:e3b2027e685c | 838 | void setAddress64(XBeeAddress64& addr64); |
okini3939 | 1:e3b2027e685c | 839 | // TODO move option to superclass |
okini3939 | 1:e3b2027e685c | 840 | uint8_t getOption(); |
okini3939 | 1:e3b2027e685c | 841 | void setOption(uint8_t option); |
okini3939 | 4:f6d73acc1f75 | 842 | virtual uint8_t getFrameData(uint16_t pos); |
okini3939 | 4:f6d73acc1f75 | 843 | virtual uint16_t getFrameDataLength(); |
okini3939 | 1:e3b2027e685c | 844 | private: |
okini3939 | 1:e3b2027e685c | 845 | XBeeAddress64 _addr64; |
okini3939 | 1:e3b2027e685c | 846 | uint8_t _option; |
okini3939 | 1:e3b2027e685c | 847 | }; |
okini3939 | 1:e3b2027e685c | 848 | |
okini3939 | 1:e3b2027e685c | 849 | #endif |
okini3939 | 1:e3b2027e685c | 850 | |
okini3939 | 1:e3b2027e685c | 851 | |
okini3939 | 1:e3b2027e685c | 852 | #ifdef SERIES_2 |
okini3939 | 1:e3b2027e685c | 853 | |
okini3939 | 1:e3b2027e685c | 854 | /** |
okini3939 | 1:e3b2027e685c | 855 | * Represents a Series 2 TX packet that corresponds to Api Id: ZB_TX_REQUEST |
okini3939 | 1:e3b2027e685c | 856 | * |
okini3939 | 1:e3b2027e685c | 857 | * Be careful not to send a data array larger than the max packet size of your radio. |
okini3939 | 1:e3b2027e685c | 858 | * This class does not perform any validation of packet size and there will be no indication |
okini3939 | 1:e3b2027e685c | 859 | * if the packet is too large, other than you will not get a TX Status response. |
okini3939 | 1:e3b2027e685c | 860 | * The datasheet says 72 bytes is the maximum for ZNet firmware and ZB Pro firmware provides |
okini3939 | 1:e3b2027e685c | 861 | * the ATNP command to get the max supported payload size. This command is useful since the |
okini3939 | 1:e3b2027e685c | 862 | * maximum payload size varies according to certain settings, such as encryption. |
okini3939 | 1:e3b2027e685c | 863 | * ZB Pro firmware provides a PAYLOAD_TOO_LARGE that is returned if payload size |
okini3939 | 1:e3b2027e685c | 864 | * exceeds the maximum. |
okini3939 | 1:e3b2027e685c | 865 | */ |
okini3939 | 1:e3b2027e685c | 866 | class ZBTxRequest : public PayloadRequest { |
okini3939 | 1:e3b2027e685c | 867 | public: |
okini3939 | 1:e3b2027e685c | 868 | /** |
okini3939 | 1:e3b2027e685c | 869 | * Creates a unicast ZBTxRequest with the ACK option and DEFAULT_FRAME_ID |
okini3939 | 1:e3b2027e685c | 870 | */ |
okini3939 | 4:f6d73acc1f75 | 871 | ZBTxRequest(XBeeAddress64 &addr64, uint8_t *payload, uint16_t payloadLength); |
okini3939 | 4:f6d73acc1f75 | 872 | ZBTxRequest(XBeeAddress64 &addr64, uint16_t addr16, uint8_t broadcastRadius, uint8_t option, uint8_t *payload, uint16_t payloadLength, uint8_t frameId); |
okini3939 | 1:e3b2027e685c | 873 | /** |
okini3939 | 1:e3b2027e685c | 874 | * Creates a default instance of this class. At a minimum you must specify |
okini3939 | 1:e3b2027e685c | 875 | * a payload, payload length and a destination address before sending this request. |
okini3939 | 1:e3b2027e685c | 876 | */ |
okini3939 | 1:e3b2027e685c | 877 | ZBTxRequest(); |
okini3939 | 1:e3b2027e685c | 878 | XBeeAddress64& getAddress64(); |
okini3939 | 1:e3b2027e685c | 879 | uint16_t getAddress16(); |
okini3939 | 1:e3b2027e685c | 880 | uint8_t getBroadcastRadius(); |
okini3939 | 1:e3b2027e685c | 881 | uint8_t getOption(); |
okini3939 | 1:e3b2027e685c | 882 | void setAddress64(XBeeAddress64& addr64); |
okini3939 | 1:e3b2027e685c | 883 | void setAddress16(uint16_t addr16); |
okini3939 | 1:e3b2027e685c | 884 | void setBroadcastRadius(uint8_t broadcastRadius); |
okini3939 | 1:e3b2027e685c | 885 | void setOption(uint8_t option); |
okini3939 | 1:e3b2027e685c | 886 | protected: |
okini3939 | 1:e3b2027e685c | 887 | // declare virtual functions |
okini3939 | 4:f6d73acc1f75 | 888 | virtual uint8_t getFrameData(uint16_t pos); |
okini3939 | 4:f6d73acc1f75 | 889 | virtual uint16_t getFrameDataLength(); |
okini3939 | 1:e3b2027e685c | 890 | private: |
okini3939 | 1:e3b2027e685c | 891 | XBeeAddress64 _addr64; |
okini3939 | 1:e3b2027e685c | 892 | uint16_t _addr16; |
okini3939 | 1:e3b2027e685c | 893 | uint8_t _broadcastRadius; |
okini3939 | 1:e3b2027e685c | 894 | uint8_t _option; |
okini3939 | 1:e3b2027e685c | 895 | }; |
okini3939 | 1:e3b2027e685c | 896 | |
okini3939 | 1:e3b2027e685c | 897 | #endif |
okini3939 | 1:e3b2027e685c | 898 | |
okini3939 | 1:e3b2027e685c | 899 | /** |
okini3939 | 1:e3b2027e685c | 900 | * Represents an AT Command TX packet |
okini3939 | 1:e3b2027e685c | 901 | * The command is used to configure the serially connected XBee radio |
okini3939 | 1:e3b2027e685c | 902 | */ |
okini3939 | 1:e3b2027e685c | 903 | class AtCommandRequest : public XBeeRequest { |
okini3939 | 1:e3b2027e685c | 904 | public: |
okini3939 | 1:e3b2027e685c | 905 | AtCommandRequest(); |
okini3939 | 1:e3b2027e685c | 906 | AtCommandRequest(uint8_t *command); |
okini3939 | 1:e3b2027e685c | 907 | AtCommandRequest(uint8_t *command, uint8_t *commandValue, uint8_t commandValueLength); |
okini3939 | 4:f6d73acc1f75 | 908 | virtual uint8_t getFrameData(uint16_t pos); |
okini3939 | 4:f6d73acc1f75 | 909 | virtual uint16_t getFrameDataLength(); |
okini3939 | 1:e3b2027e685c | 910 | uint8_t* getCommand(); |
okini3939 | 1:e3b2027e685c | 911 | void setCommand(uint8_t* command); |
okini3939 | 1:e3b2027e685c | 912 | uint8_t* getCommandValue(); |
okini3939 | 1:e3b2027e685c | 913 | void setCommandValue(uint8_t* command); |
okini3939 | 1:e3b2027e685c | 914 | uint8_t getCommandValueLength(); |
okini3939 | 1:e3b2027e685c | 915 | void setCommandValueLength(uint8_t length); |
okini3939 | 1:e3b2027e685c | 916 | /** |
okini3939 | 1:e3b2027e685c | 917 | * Clears the optional commandValue and commandValueLength so that a query may be sent |
okini3939 | 1:e3b2027e685c | 918 | */ |
okini3939 | 1:e3b2027e685c | 919 | void clearCommandValue(); |
okini3939 | 1:e3b2027e685c | 920 | //void reset(); |
okini3939 | 1:e3b2027e685c | 921 | private: |
okini3939 | 1:e3b2027e685c | 922 | uint8_t *_command; |
okini3939 | 1:e3b2027e685c | 923 | uint8_t *_commandValue; |
okini3939 | 1:e3b2027e685c | 924 | uint8_t _commandValueLength; |
okini3939 | 1:e3b2027e685c | 925 | }; |
okini3939 | 1:e3b2027e685c | 926 | |
okini3939 | 1:e3b2027e685c | 927 | /** |
okini3939 | 1:e3b2027e685c | 928 | * Represents an Remote AT Command TX packet |
okini3939 | 1:e3b2027e685c | 929 | * The command is used to configure a remote XBee radio |
okini3939 | 1:e3b2027e685c | 930 | */ |
okini3939 | 1:e3b2027e685c | 931 | class RemoteAtCommandRequest : public AtCommandRequest { |
okini3939 | 1:e3b2027e685c | 932 | public: |
okini3939 | 1:e3b2027e685c | 933 | RemoteAtCommandRequest(); |
okini3939 | 1:e3b2027e685c | 934 | /** |
okini3939 | 1:e3b2027e685c | 935 | * Creates a RemoteAtCommandRequest with 16-bit address to set a command. |
okini3939 | 1:e3b2027e685c | 936 | * 64-bit address defaults to broadcast and applyChanges is true. |
okini3939 | 1:e3b2027e685c | 937 | */ |
okini3939 | 1:e3b2027e685c | 938 | RemoteAtCommandRequest(uint16_t remoteAddress16, uint8_t *command, uint8_t *commandValue, uint8_t commandValueLength); |
okini3939 | 1:e3b2027e685c | 939 | /** |
okini3939 | 1:e3b2027e685c | 940 | * Creates a RemoteAtCommandRequest with 16-bit address to query a command. |
okini3939 | 1:e3b2027e685c | 941 | * 64-bit address defaults to broadcast and applyChanges is true. |
okini3939 | 1:e3b2027e685c | 942 | */ |
okini3939 | 1:e3b2027e685c | 943 | RemoteAtCommandRequest(uint16_t remoteAddress16, uint8_t *command); |
okini3939 | 1:e3b2027e685c | 944 | /** |
okini3939 | 1:e3b2027e685c | 945 | * Creates a RemoteAtCommandRequest with 64-bit address to set a command. |
okini3939 | 1:e3b2027e685c | 946 | * 16-bit address defaults to broadcast and applyChanges is true. |
okini3939 | 1:e3b2027e685c | 947 | */ |
okini3939 | 1:e3b2027e685c | 948 | RemoteAtCommandRequest(XBeeAddress64 &remoteAddress64, uint8_t *command, uint8_t *commandValue, uint8_t commandValueLength); |
okini3939 | 1:e3b2027e685c | 949 | /** |
okini3939 | 1:e3b2027e685c | 950 | * Creates a RemoteAtCommandRequest with 16-bit address to query a command. |
okini3939 | 1:e3b2027e685c | 951 | * 16-bit address defaults to broadcast and applyChanges is true. |
okini3939 | 1:e3b2027e685c | 952 | */ |
okini3939 | 1:e3b2027e685c | 953 | RemoteAtCommandRequest(XBeeAddress64 &remoteAddress64, uint8_t *command); |
okini3939 | 1:e3b2027e685c | 954 | uint16_t getRemoteAddress16(); |
okini3939 | 1:e3b2027e685c | 955 | void setRemoteAddress16(uint16_t remoteAddress16); |
okini3939 | 1:e3b2027e685c | 956 | XBeeAddress64& getRemoteAddress64(); |
okini3939 | 1:e3b2027e685c | 957 | void setRemoteAddress64(XBeeAddress64 &remoteAddress64); |
okini3939 | 1:e3b2027e685c | 958 | bool getApplyChanges(); |
okini3939 | 1:e3b2027e685c | 959 | void setApplyChanges(bool applyChanges); |
okini3939 | 4:f6d73acc1f75 | 960 | virtual uint8_t getFrameData(uint16_t pos); |
okini3939 | 4:f6d73acc1f75 | 961 | virtual uint16_t getFrameDataLength(); |
okini3939 | 1:e3b2027e685c | 962 | static XBeeAddress64 broadcastAddress64; |
okini3939 | 1:e3b2027e685c | 963 | // static uint16_t broadcast16Address; |
okini3939 | 1:e3b2027e685c | 964 | private: |
okini3939 | 1:e3b2027e685c | 965 | XBeeAddress64 _remoteAddress64; |
okini3939 | 1:e3b2027e685c | 966 | uint16_t _remoteAddress16; |
okini3939 | 1:e3b2027e685c | 967 | bool _applyChanges; |
okini3939 | 1:e3b2027e685c | 968 | }; |
okini3939 | 1:e3b2027e685c | 969 | |
okini3939 | 1:e3b2027e685c | 970 | |
okini3939 | 1:e3b2027e685c | 971 | |
okini3939 | 1:e3b2027e685c | 972 | #endif //XBee_h |