Copy of XBeeLib for "LosPutacos"
Fork of XBeeLib by
XBee/XBee.cpp@4:629712865107, 2015-06-01 (annotated)
- Committer:
- spastor
- Date:
- Mon Jun 01 18:59:43 2015 +0200
- Revision:
- 4:629712865107
- Parent:
- 3:8662ebe83570
- Child:
- 5:da2ea7a76243
Automatic upload
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
spastor | 0:fcaad0dfa051 | 1 | /** |
spastor | 0:fcaad0dfa051 | 2 | * Copyright (c) 2015 Digi International Inc., |
spastor | 0:fcaad0dfa051 | 3 | * All rights not expressly granted are reserved. |
spastor | 0:fcaad0dfa051 | 4 | * |
spastor | 0:fcaad0dfa051 | 5 | * This Source Code Form is subject to the terms of the Mozilla Public |
spastor | 0:fcaad0dfa051 | 6 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
spastor | 0:fcaad0dfa051 | 7 | * You can obtain one at http://mozilla.org/MPL/2.0/. |
spastor | 0:fcaad0dfa051 | 8 | * |
spastor | 0:fcaad0dfa051 | 9 | * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343 |
spastor | 0:fcaad0dfa051 | 10 | * ======================================================================= |
spastor | 0:fcaad0dfa051 | 11 | */ |
spastor | 0:fcaad0dfa051 | 12 | |
spastor | 0:fcaad0dfa051 | 13 | #include "XBeeLib.h" |
spastor | 0:fcaad0dfa051 | 14 | #include "FrameHandlers/FH_ModemStatus.h" |
spastor | 0:fcaad0dfa051 | 15 | |
spastor | 0:fcaad0dfa051 | 16 | /* States for the state machine that processes incoming data on the serial port */ |
spastor | 0:fcaad0dfa051 | 17 | #define WAITING_FOR_START_FRAME (0) |
spastor | 0:fcaad0dfa051 | 18 | #define WAITING_FOR_LENGTH_MSB (1) |
spastor | 0:fcaad0dfa051 | 19 | #define WAITING_FOR_LENGTH_LSB (2) |
spastor | 0:fcaad0dfa051 | 20 | #define WAITING_FOR_PAYLOAD (3) |
spastor | 0:fcaad0dfa051 | 21 | #define WAITING_FOR_CHECKSUM (4) |
spastor | 0:fcaad0dfa051 | 22 | |
spastor | 0:fcaad0dfa051 | 23 | #define IS_API2() (_mode == ModeAPI2) |
spastor | 0:fcaad0dfa051 | 24 | #define IS_API_MODE() (_mode == ModeAPI1 || _mode == ModeAPI2) |
spastor | 0:fcaad0dfa051 | 25 | |
spastor | 0:fcaad0dfa051 | 26 | using namespace XBeeLib; |
spastor | 0:fcaad0dfa051 | 27 | |
spastor | 4:629712865107 | 28 | #if defined(FRAME_BUFFER_SIZE_SYNCR) |
spastor | 4:629712865107 | 29 | #if FRAME_BUFFER_SIZE_SYNCR < 2 |
spastor | 4:629712865107 | 30 | #error "FRAME_BUFFER_SIZE_SYNCR must be at least 2" |
spastor | 4:629712865107 | 31 | #endif |
spastor | 4:629712865107 | 32 | #else |
spastor | 4:629712865107 | 33 | #define FRAME_BUFFER_SIZE_SYNCR 1 |
spastor | 4:629712865107 | 34 | #endif |
spastor | 4:629712865107 | 35 | |
spastor | 4:629712865107 | 36 | #define MAX_FRAME_PAYLOAD_LEN_SYNCR (1 /* type */ + 1 /* id */ + 2 /* at cmd*/ + 1 /* status */ + 2 /* MY sender */ + \ |
spastor | 4:629712865107 | 37 | 8 /* 64b sender */ + 20 /* max id */ + 1 /* null ter */ + 2 /* MY parent */ + 1 /* dev type */ + \ |
spastor | 4:629712865107 | 38 | 1 /* source event */ + 2 /* prof. id */ + 2 /* man. id */) |
spastor | 4:629712865107 | 39 | |
spastor | 4:629712865107 | 40 | FrameBuffer XBee::_framebuf_app(FRAME_BUFFER_SIZE, MAX_FRAME_PAYLOAD_LEN); |
spastor | 4:629712865107 | 41 | FrameBuffer XBee::_framebuf_syncr(FRAME_BUFFER_SIZE_SYNCR, MAX_FRAME_PAYLOAD_LEN_SYNCR); |
spastor | 0:fcaad0dfa051 | 42 | |
hbujanda | 2:2ee1b6d51df2 | 43 | #if defined(DEVICE_SERIAL_FC) |
hbujanda | 2:2ee1b6d51df2 | 44 | bool XBee::check_radio_flow_control() |
hbujanda | 2:2ee1b6d51df2 | 45 | { |
hbujanda | 2:2ee1b6d51df2 | 46 | AtCmdFrame::AtCmdResp cmdresp; |
hbujanda | 2:2ee1b6d51df2 | 47 | uint32_t value; |
hbujanda | 2:2ee1b6d51df2 | 48 | |
hbujanda | 2:2ee1b6d51df2 | 49 | if (_serial_flow_type == SerialBase::RTSCTS || _serial_flow_type == SerialBase::CTS) { |
hbujanda | 2:2ee1b6d51df2 | 50 | cmdresp = get_param("D7", &value); |
hbujanda | 2:2ee1b6d51df2 | 51 | if (cmdresp != AtCmdFrame::AtCmdRespOk) { |
hbujanda | 2:2ee1b6d51df2 | 52 | digi_log(LogLevelError, "Could not read CTS configuration. Error %d\r\n", cmdresp); |
hbujanda | 2:2ee1b6d51df2 | 53 | return false; |
spastor | 4:629712865107 | 54 | } else if (value != 1) { |
hbujanda | 2:2ee1b6d51df2 | 55 | digi_log(LogLevelError, "Bad CTS configuration. Radio 'D7' param is %d and should be 1\r\n", value); |
hbujanda | 2:2ee1b6d51df2 | 56 | return false; |
hbujanda | 2:2ee1b6d51df2 | 57 | } |
hbujanda | 2:2ee1b6d51df2 | 58 | } |
hbujanda | 2:2ee1b6d51df2 | 59 | |
hbujanda | 2:2ee1b6d51df2 | 60 | if (_serial_flow_type == SerialBase::RTSCTS || _serial_flow_type == SerialBase::RTS) { |
hbujanda | 2:2ee1b6d51df2 | 61 | cmdresp = get_param("D6", &value); |
hbujanda | 2:2ee1b6d51df2 | 62 | if (cmdresp != AtCmdFrame::AtCmdRespOk) { |
hbujanda | 2:2ee1b6d51df2 | 63 | digi_log(LogLevelError, "Could not read RTS configuration. Error %d\r\n", cmdresp); |
hbujanda | 2:2ee1b6d51df2 | 64 | return false; |
spastor | 4:629712865107 | 65 | } else if (value != 1) { |
hbujanda | 2:2ee1b6d51df2 | 66 | digi_log(LogLevelError, "Bad RTS configuration. Radio 'D6' param is %d and should be 1\r\n", value); |
hbujanda | 2:2ee1b6d51df2 | 67 | return false; |
hbujanda | 2:2ee1b6d51df2 | 68 | } |
hbujanda | 2:2ee1b6d51df2 | 69 | } |
hbujanda | 2:2ee1b6d51df2 | 70 | |
hbujanda | 2:2ee1b6d51df2 | 71 | return true; |
hbujanda | 2:2ee1b6d51df2 | 72 | } |
hbujanda | 2:2ee1b6d51df2 | 73 | #endif |
hbujanda | 2:2ee1b6d51df2 | 74 | |
spastor | 0:fcaad0dfa051 | 75 | /* Class constructor */ |
spastor | 0:fcaad0dfa051 | 76 | XBee::XBee(PinName tx, PinName rx, PinName reset, PinName rts, PinName cts, int baud) : |
spastor | 4:629712865107 | 77 | _mode(ModeUnknown), _hw_version(0), _fw_version(0), _timeout_ms(SYNC_OPS_TIMEOUT_MS), _dev_addr64(ADDR64_UNASSIGNED), |
spastor | 4:629712865107 | 78 | _reset(NULL), _tx_options(0), _hw_reset_cnt(0), _wd_reset_cnt(0), _modem_status_handler(NULL), _modem_status(AtCmdFrame::HwReset), _initializing(true), _node_by_ni_frame_id(0) |
spastor | 0:fcaad0dfa051 | 79 | { |
spastor | 0:fcaad0dfa051 | 80 | |
spastor | 0:fcaad0dfa051 | 81 | if (reset != NC) { |
hbujanda | 1:794d1d3e4a08 | 82 | _reset = new DigitalOut(reset, 1); |
spastor | 0:fcaad0dfa051 | 83 | } |
spastor | 0:fcaad0dfa051 | 84 | |
spastor | 0:fcaad0dfa051 | 85 | _uart = new RawSerial(tx, rx); |
spastor | 0:fcaad0dfa051 | 86 | _uart->baud(baud); |
hbujanda | 1:794d1d3e4a08 | 87 | |
hbujanda | 1:794d1d3e4a08 | 88 | _serial_flow_type = SerialBase::Disabled; |
spastor | 0:fcaad0dfa051 | 89 | #if defined(DEVICE_SERIAL_FC) |
spastor | 0:fcaad0dfa051 | 90 | if (rts != NC && cts != NC) { |
hbujanda | 1:794d1d3e4a08 | 91 | _serial_flow_type = SerialBase::RTSCTS; |
spastor | 4:629712865107 | 92 | _uart->set_flow_control(_serial_flow_type, rts, cts); |
spastor | 4:629712865107 | 93 | } else if (rts != NC && cts == NC) { |
hbujanda | 1:794d1d3e4a08 | 94 | _serial_flow_type = SerialBase::RTS; |
hbujanda | 1:794d1d3e4a08 | 95 | _uart->set_flow_control(_serial_flow_type, rts); |
spastor | 4:629712865107 | 96 | } else if (rts == NC && cts != NC) { |
hbujanda | 1:794d1d3e4a08 | 97 | _serial_flow_type = SerialBase::CTS; |
hbujanda | 1:794d1d3e4a08 | 98 | _uart->set_flow_control(_serial_flow_type, cts); |
spastor | 0:fcaad0dfa051 | 99 | } |
spastor | 0:fcaad0dfa051 | 100 | #endif |
spastor | 0:fcaad0dfa051 | 101 | /* Enable the reception of bytes on the serial interface by providing a cb */ |
spastor | 0:fcaad0dfa051 | 102 | _uart->attach(this, &XBee::uart_read_cb, Serial::RxIrq); |
spastor | 0:fcaad0dfa051 | 103 | |
spastor | 0:fcaad0dfa051 | 104 | for (int i = 0; i < MAX_FRAME_HANDLERS; i++) { |
spastor | 0:fcaad0dfa051 | 105 | _fhandlers[i] = NULL; |
spastor | 0:fcaad0dfa051 | 106 | } |
spastor | 0:fcaad0dfa051 | 107 | } |
spastor | 0:fcaad0dfa051 | 108 | |
spastor | 0:fcaad0dfa051 | 109 | /* Class destructor */ |
spastor | 0:fcaad0dfa051 | 110 | XBee::~XBee() |
spastor | 0:fcaad0dfa051 | 111 | { |
spastor | 0:fcaad0dfa051 | 112 | unregister_modem_status_cb(); |
spastor | 0:fcaad0dfa051 | 113 | |
spastor | 0:fcaad0dfa051 | 114 | if (_uart != NULL) { |
spastor | 0:fcaad0dfa051 | 115 | delete _uart; |
spastor | 0:fcaad0dfa051 | 116 | } |
spastor | 0:fcaad0dfa051 | 117 | if (_reset != NULL) { |
spastor | 0:fcaad0dfa051 | 118 | delete _reset; |
spastor | 0:fcaad0dfa051 | 119 | } |
spastor | 0:fcaad0dfa051 | 120 | } |
spastor | 0:fcaad0dfa051 | 121 | |
spastor | 0:fcaad0dfa051 | 122 | #include <inttypes.h> |
spastor | 0:fcaad0dfa051 | 123 | |
spastor | 0:fcaad0dfa051 | 124 | RadioStatus XBee::init(void) |
spastor | 0:fcaad0dfa051 | 125 | { |
spastor | 0:fcaad0dfa051 | 126 | AtCmdFrame::AtCmdResp cmd_resp; |
spastor | 0:fcaad0dfa051 | 127 | uint32_t var32; |
spastor | 0:fcaad0dfa051 | 128 | |
spastor | 0:fcaad0dfa051 | 129 | _initializing = true; |
spastor | 0:fcaad0dfa051 | 130 | |
spastor | 4:629712865107 | 131 | const unsigned int max_reset_retries = 3; |
spastor | 4:629712865107 | 132 | RadioStatus reset_status; |
spastor | 4:629712865107 | 133 | for (unsigned int i = 0; i < max_reset_retries; i++) { |
spastor | 4:629712865107 | 134 | reset_status = device_reset(); |
spastor | 4:629712865107 | 135 | if (reset_status == Success) { |
spastor | 4:629712865107 | 136 | break; |
spastor | 4:629712865107 | 137 | } |
spastor | 4:629712865107 | 138 | } |
spastor | 4:629712865107 | 139 | if (reset_status != Success) { |
spastor | 4:629712865107 | 140 | return reset_status; |
spastor | 4:629712865107 | 141 | } |
spastor | 0:fcaad0dfa051 | 142 | |
spastor | 0:fcaad0dfa051 | 143 | /* Check if radio is in API1 or API2 _mode */ |
spastor | 0:fcaad0dfa051 | 144 | cmd_resp = get_param("AP", &var32); |
spastor | 4:629712865107 | 145 | if (cmd_resp != AtCmdFrame::AtCmdRespOk) { |
spastor | 0:fcaad0dfa051 | 146 | return Failure; |
spastor | 4:629712865107 | 147 | } |
spastor | 0:fcaad0dfa051 | 148 | _mode = (RadioMode)var32; |
spastor | 0:fcaad0dfa051 | 149 | |
spastor | 0:fcaad0dfa051 | 150 | /* Read the device unique 64b address */ |
spastor | 0:fcaad0dfa051 | 151 | uint32_t serialn_high, serialn_low; |
spastor | 0:fcaad0dfa051 | 152 | cmd_resp = get_param("SH", &serialn_high); |
spastor | 4:629712865107 | 153 | if (cmd_resp != AtCmdFrame::AtCmdRespOk) { |
spastor | 0:fcaad0dfa051 | 154 | return Failure; |
spastor | 4:629712865107 | 155 | } |
spastor | 4:629712865107 | 156 | |
spastor | 0:fcaad0dfa051 | 157 | cmd_resp = get_param("SL", &serialn_low); |
spastor | 4:629712865107 | 158 | if (cmd_resp != AtCmdFrame::AtCmdRespOk) { |
spastor | 0:fcaad0dfa051 | 159 | return Failure; |
spastor | 4:629712865107 | 160 | } |
spastor | 0:fcaad0dfa051 | 161 | |
spastor | 0:fcaad0dfa051 | 162 | _dev_addr64 = ((uint64_t)serialn_high << 32) | serialn_low; |
spastor | 0:fcaad0dfa051 | 163 | |
spastor | 0:fcaad0dfa051 | 164 | /* Read some important parameters */ |
spastor | 0:fcaad0dfa051 | 165 | cmd_resp = get_param("HV", &var32); |
spastor | 4:629712865107 | 166 | if (cmd_resp != AtCmdFrame::AtCmdRespOk) { |
spastor | 0:fcaad0dfa051 | 167 | return Failure; |
spastor | 4:629712865107 | 168 | } |
spastor | 0:fcaad0dfa051 | 169 | _hw_version = var32; |
spastor | 0:fcaad0dfa051 | 170 | |
spastor | 0:fcaad0dfa051 | 171 | cmd_resp = get_param("VR", &var32); |
spastor | 4:629712865107 | 172 | if (cmd_resp != AtCmdFrame::AtCmdRespOk) { |
spastor | 0:fcaad0dfa051 | 173 | return Failure; |
spastor | 4:629712865107 | 174 | } |
spastor | 0:fcaad0dfa051 | 175 | _fw_version = var32; |
spastor | 0:fcaad0dfa051 | 176 | |
spastor | 0:fcaad0dfa051 | 177 | digi_log(LogLevelInfo, "mode: %02x\r\n", (uint8_t)_mode); |
spastor | 0:fcaad0dfa051 | 178 | digi_log(LogLevelInfo, "HV: %04x\r\n", _hw_version); |
spastor | 0:fcaad0dfa051 | 179 | digi_log(LogLevelInfo, "VR: %04x\r\n", _fw_version); |
spastor | 0:fcaad0dfa051 | 180 | digi_log(LogLevelInfo, "ADDR64: %08x:%08x\r\n", UINT64_HI32(_dev_addr64), UINT64_LO32(_dev_addr64)); |
spastor | 0:fcaad0dfa051 | 181 | |
hbujanda | 2:2ee1b6d51df2 | 182 | #if defined(DEVICE_SERIAL_FC) |
hbujanda | 2:2ee1b6d51df2 | 183 | bool valid_radio_fc = check_radio_flow_control(); |
hbujanda | 2:2ee1b6d51df2 | 184 | assert(valid_radio_fc == true); |
hbujanda | 2:2ee1b6d51df2 | 185 | #endif |
hbujanda | 2:2ee1b6d51df2 | 186 | |
spastor | 0:fcaad0dfa051 | 187 | _initializing = false; |
spastor | 0:fcaad0dfa051 | 188 | if (_modem_status_handler != NULL) { |
spastor | 0:fcaad0dfa051 | 189 | const ApiFrame frame = ApiFrame(ApiFrame::AtModemStatus, (uint8_t *)&_modem_status, sizeof(_modem_status)); |
spastor | 0:fcaad0dfa051 | 190 | _modem_status_handler->process_frame_data(&frame); |
spastor | 4:629712865107 | 191 | } |
spastor | 0:fcaad0dfa051 | 192 | |
spastor | 0:fcaad0dfa051 | 193 | return Success; |
spastor | 0:fcaad0dfa051 | 194 | } |
spastor | 0:fcaad0dfa051 | 195 | |
spastor | 0:fcaad0dfa051 | 196 | uint64_t XBee::get_addr64() const |
spastor | 0:fcaad0dfa051 | 197 | { |
spastor | 0:fcaad0dfa051 | 198 | return _dev_addr64; |
spastor | 0:fcaad0dfa051 | 199 | } |
spastor | 0:fcaad0dfa051 | 200 | |
spastor | 0:fcaad0dfa051 | 201 | RadioStatus XBee::hardware_reset() |
spastor | 0:fcaad0dfa051 | 202 | { |
spastor | 0:fcaad0dfa051 | 203 | if (_reset != NULL) { |
spastor | 0:fcaad0dfa051 | 204 | volatile uint16_t * const rst_cnt_p = &_hw_reset_cnt; |
spastor | 0:fcaad0dfa051 | 205 | const uint16_t init_rst_cnt = *rst_cnt_p; |
spastor | 0:fcaad0dfa051 | 206 | *_reset = 0; |
spastor | 0:fcaad0dfa051 | 207 | wait_ms(10); |
spastor | 0:fcaad0dfa051 | 208 | *_reset = 1; |
spastor | 0:fcaad0dfa051 | 209 | return wait_for_module_to_reset(rst_cnt_p, init_rst_cnt); |
spastor | 0:fcaad0dfa051 | 210 | } |
spastor | 0:fcaad0dfa051 | 211 | |
spastor | 0:fcaad0dfa051 | 212 | return Failure; |
spastor | 0:fcaad0dfa051 | 213 | } |
spastor | 0:fcaad0dfa051 | 214 | |
spastor | 0:fcaad0dfa051 | 215 | RadioStatus XBee::device_reset() |
spastor | 0:fcaad0dfa051 | 216 | { |
spastor | 4:629712865107 | 217 | if (hardware_reset() == Success) { |
spastor | 0:fcaad0dfa051 | 218 | return Success; |
spastor | 4:629712865107 | 219 | } |
spastor | 0:fcaad0dfa051 | 220 | |
spastor | 0:fcaad0dfa051 | 221 | return software_reset(); |
spastor | 0:fcaad0dfa051 | 222 | } |
spastor | 0:fcaad0dfa051 | 223 | |
spastor | 0:fcaad0dfa051 | 224 | RadioStatus XBee::wait_for_module_to_reset(volatile uint16_t *rst_cnt_p, uint16_t init_rst_cnt) |
spastor | 0:fcaad0dfa051 | 225 | { |
spastor | 4:629712865107 | 226 | Timer timer = Timer(); |
spastor | 4:629712865107 | 227 | timer.start(); |
spastor | 4:629712865107 | 228 | |
spastor | 4:629712865107 | 229 | while (*rst_cnt_p == init_rst_cnt && timer.read_ms() < RESET_TIMEOUT_MS) { |
spastor | 0:fcaad0dfa051 | 230 | wait_ms(100); |
spastor | 0:fcaad0dfa051 | 231 | } |
spastor | 0:fcaad0dfa051 | 232 | |
spastor | 4:629712865107 | 233 | if (*rst_cnt_p == init_rst_cnt) { |
spastor | 0:fcaad0dfa051 | 234 | digi_log(LogLevelWarning, "Reset Timeout\r\n"); |
spastor | 0:fcaad0dfa051 | 235 | return Failure; |
spastor | 0:fcaad0dfa051 | 236 | } |
spastor | 0:fcaad0dfa051 | 237 | return Success; |
spastor | 0:fcaad0dfa051 | 238 | } |
spastor | 0:fcaad0dfa051 | 239 | |
spastor | 0:fcaad0dfa051 | 240 | /** Callback function called when data is received on the serial port */ |
spastor | 0:fcaad0dfa051 | 241 | void XBee::uart_read_cb(void) |
spastor | 0:fcaad0dfa051 | 242 | { |
spastor | 0:fcaad0dfa051 | 243 | static uint8_t rxstate = WAITING_FOR_START_FRAME; |
spastor | 0:fcaad0dfa051 | 244 | static uint16_t framelen = 0; |
spastor | 0:fcaad0dfa051 | 245 | static uint16_t bytes_read; |
spastor | 0:fcaad0dfa051 | 246 | static uint8_t chksum; |
spastor | 0:fcaad0dfa051 | 247 | static ApiFrame *frame = NULL; |
spastor | 0:fcaad0dfa051 | 248 | static bool last_byte_escaped = false; |
spastor | 4:629712865107 | 249 | static FrameBuffer * framebuf = NULL; |
spastor | 4:629712865107 | 250 | |
spastor | 0:fcaad0dfa051 | 251 | while (_uart->readable()) { |
spastor | 0:fcaad0dfa051 | 252 | uint8_t data = _uart->getc(); |
spastor | 4:629712865107 | 253 | |
spastor | 0:fcaad0dfa051 | 254 | if (IS_API2() && rxstate != WAITING_FOR_START_FRAME) { |
spastor | 0:fcaad0dfa051 | 255 | if (last_byte_escaped) { |
spastor | 0:fcaad0dfa051 | 256 | data = data ^ DR_ESCAPE_XOR_BYTE; |
spastor | 0:fcaad0dfa051 | 257 | last_byte_escaped = false; |
spastor | 0:fcaad0dfa051 | 258 | } else if (data == DR_ESCAPE_BYTE) { |
spastor | 0:fcaad0dfa051 | 259 | last_byte_escaped = true; |
spastor | 0:fcaad0dfa051 | 260 | continue; |
spastor | 0:fcaad0dfa051 | 261 | } |
spastor | 0:fcaad0dfa051 | 262 | } |
spastor | 4:629712865107 | 263 | |
spastor | 0:fcaad0dfa051 | 264 | switch (rxstate) { |
spastor | 0:fcaad0dfa051 | 265 | case WAITING_FOR_START_FRAME: |
spastor | 4:629712865107 | 266 | if (data == DR_START_OF_FRAME) { |
spastor | 0:fcaad0dfa051 | 267 | rxstate = WAITING_FOR_LENGTH_MSB; |
spastor | 4:629712865107 | 268 | } |
spastor | 0:fcaad0dfa051 | 269 | break; |
spastor | 4:629712865107 | 270 | |
spastor | 0:fcaad0dfa051 | 271 | case WAITING_FOR_LENGTH_MSB: |
spastor | 0:fcaad0dfa051 | 272 | framelen = data << 8; |
spastor | 0:fcaad0dfa051 | 273 | rxstate = WAITING_FOR_LENGTH_LSB; |
spastor | 0:fcaad0dfa051 | 274 | break; |
spastor | 0:fcaad0dfa051 | 275 | |
spastor | 0:fcaad0dfa051 | 276 | case WAITING_FOR_LENGTH_LSB: |
spastor | 0:fcaad0dfa051 | 277 | framelen |= data; |
spastor | 4:629712865107 | 278 | rxstate = WAITING_FOR_PAYLOAD; |
spastor | 0:fcaad0dfa051 | 279 | bytes_read = 0; |
spastor | 0:fcaad0dfa051 | 280 | chksum = 0; |
spastor | 0:fcaad0dfa051 | 281 | /* Sanity check that the frame is smaller than... */ |
spastor | 0:fcaad0dfa051 | 282 | if (framelen > MAX_FRAME_PAYLOAD_LEN) { |
spastor | 0:fcaad0dfa051 | 283 | digi_log(LogLevelDebug, "framelen=%d too long\r\n", framelen); |
spastor | 0:fcaad0dfa051 | 284 | digi_log(LogLevelWarning, "Frame dropped, frame too long. Increase MAX_FRAME_PAYLOAD_LEN define\r\n"); |
spastor | 0:fcaad0dfa051 | 285 | rxstate = WAITING_FOR_START_FRAME; |
spastor | 0:fcaad0dfa051 | 286 | } |
spastor | 0:fcaad0dfa051 | 287 | break; |
spastor | 0:fcaad0dfa051 | 288 | |
spastor | 0:fcaad0dfa051 | 289 | case WAITING_FOR_PAYLOAD: |
spastor | 4:629712865107 | 290 | #define CACHED_SIZE 3 |
spastor | 4:629712865107 | 291 | static uint8_t frame_cached[CACHED_SIZE]; |
spastor | 4:629712865107 | 292 | |
spastor | 4:629712865107 | 293 | if (framelen <= CACHED_SIZE) { |
spastor | 4:629712865107 | 294 | if (!bytes_read) { |
spastor | 4:629712865107 | 295 | const ApiFrame::ApiFrameType frame_type = (ApiFrame::ApiFrameType)data; |
spastor | 4:629712865107 | 296 | switch (frame_type) |
spastor | 4:629712865107 | 297 | { |
spastor | 4:629712865107 | 298 | case ApiFrame::AtCmdResp: /**< AtCmdResp */ |
spastor | 4:629712865107 | 299 | case ApiFrame::RemoteCmdResp: /**< RemoteCmdResp */ |
spastor | 4:629712865107 | 300 | case ApiFrame::TxStatusZB: /**< TxStatusZB: Only for ZigBee modules */ |
spastor | 4:629712865107 | 301 | case ApiFrame::TxStatus: /**< TxStatus */ |
spastor | 4:629712865107 | 302 | framebuf = &_framebuf_syncr; |
spastor | 4:629712865107 | 303 | break; |
spastor | 4:629712865107 | 304 | |
spastor | 4:629712865107 | 305 | case ApiFrame::RxPacket64Bit: /**< RxPacket64Bit: Only for 802.15.4 modules */ |
spastor | 4:629712865107 | 306 | case ApiFrame::RxPacket16Bit: /**< RxPacket16Bit: Only for 802.15.4 modules */ |
spastor | 4:629712865107 | 307 | case ApiFrame::Io64Bit: /**< Io64Bit: Only for 802.15.4 modules */ |
spastor | 4:629712865107 | 308 | case ApiFrame::Io16Bit: /**< Io16Bit */ |
spastor | 4:629712865107 | 309 | case ApiFrame::AtModemStatus: /**< AtModemStatus */ |
spastor | 4:629712865107 | 310 | case ApiFrame::RxPacketAO0: /**< RxPacketAO0: Only for ZigBee modules */ |
spastor | 4:629712865107 | 311 | case ApiFrame::IoSampleRxZB: /**< IoSampleRxZB: Only for ZigBee modules */ |
spastor | 4:629712865107 | 312 | framebuf = &_framebuf_app; |
spastor | 4:629712865107 | 313 | break; |
spastor | 4:629712865107 | 314 | |
spastor | 4:629712865107 | 315 | case ApiFrame::RxPacketAO1: /**< RxPacketAO1: Only for ZigBee modules */ |
spastor | 4:629712865107 | 316 | case ApiFrame::SensorRxIndAO0: /**< SensorRxIndAO0: Only for ZigBee modules */ |
spastor | 4:629712865107 | 317 | case ApiFrame::NodeIdentIndAO0: /**< NodeIdentIndAO0: Only for ZigBee modules */ |
spastor | 4:629712865107 | 318 | case ApiFrame::OtaFwUpStatus: /**< OtaFwUpStatus */ |
spastor | 4:629712865107 | 319 | case ApiFrame::RouteRecInd: /**< RouteRecInd */ |
spastor | 4:629712865107 | 320 | case ApiFrame::Many2OneRRInd: /**< Many2OneRRInd */ |
spastor | 4:629712865107 | 321 | case ApiFrame::TxReq64Bit: /**< TxReq64Bit: Only for 802.15.4 modules */ |
spastor | 4:629712865107 | 322 | case ApiFrame::TxReq16Bit: /**< TxReq16Bit: Only for 802.15.4 modules */ |
spastor | 4:629712865107 | 323 | case ApiFrame::AtCmd: /**< AtCmd */ |
spastor | 4:629712865107 | 324 | case ApiFrame::AtCmdQueuePV: /**< AtCmdQueuePV */ |
spastor | 4:629712865107 | 325 | case ApiFrame::TxReqZB: /**< TxReqZB: Only for ZigBee modules */ |
spastor | 4:629712865107 | 326 | case ApiFrame::ExpAddrCmd: /**< ExpAddrCmd: Only for ZigBee modules */ |
spastor | 4:629712865107 | 327 | case ApiFrame::RemoteCmdReq: /**< RemoteCmdReq */ |
spastor | 4:629712865107 | 328 | case ApiFrame::CreateSrcRoute: /**< CreateSrcRoute */ |
spastor | 4:629712865107 | 329 | case ApiFrame::Invalid: /**< Invalid */ |
spastor | 4:629712865107 | 330 | framebuf = NULL; |
spastor | 4:629712865107 | 331 | break; |
spastor | 4:629712865107 | 332 | } |
spastor | 4:629712865107 | 333 | |
spastor | 4:629712865107 | 334 | if (framebuf == NULL) { |
spastor | 4:629712865107 | 335 | digi_log(LogLevelWarning, "Discarding not supported frame type %02x\r\n", frame_type); |
spastor | 4:629712865107 | 336 | rxstate = WAITING_FOR_START_FRAME; |
spastor | 4:629712865107 | 337 | } else { |
spastor | 4:629712865107 | 338 | frame = framebuf->get_next_free_frame(); |
spastor | 4:629712865107 | 339 | if (frame == NULL) { |
spastor | 4:629712865107 | 340 | /* It's not possible to achive this condition as we discard older frames and only one frame can be used by syncr. commands */ |
spastor | 4:629712865107 | 341 | assert(frame != NULL); |
spastor | 4:629712865107 | 342 | rxstate = WAITING_FOR_START_FRAME; |
spastor | 4:629712865107 | 343 | } else { |
spastor | 4:629712865107 | 344 | frame->set_data_len(framelen - 1); |
spastor | 4:629712865107 | 345 | } |
spastor | 4:629712865107 | 346 | |
spastor | 4:629712865107 | 347 | frame->set_frame_type(frame_type); |
spastor | 4:629712865107 | 348 | } |
spastor | 4:629712865107 | 349 | } else { |
spastor | 4:629712865107 | 350 | frame->set_data(data, bytes_read - 1); |
spastor | 4:629712865107 | 351 | } |
spastor | 4:629712865107 | 352 | chksum += data; |
spastor | 4:629712865107 | 353 | bytes_read++; |
spastor | 4:629712865107 | 354 | if (bytes_read == framelen) { |
spastor | 4:629712865107 | 355 | rxstate = WAITING_FOR_CHECKSUM; |
spastor | 4:629712865107 | 356 | } |
spastor | 4:629712865107 | 357 | break; |
spastor | 4:629712865107 | 358 | } |
spastor | 4:629712865107 | 359 | |
spastor | 4:629712865107 | 360 | |
spastor | 4:629712865107 | 361 | if (bytes_read < CACHED_SIZE) { |
spastor | 4:629712865107 | 362 | frame_cached[bytes_read] = data; |
spastor | 4:629712865107 | 363 | } |
spastor | 4:629712865107 | 364 | else if (bytes_read == CACHED_SIZE) { |
spastor | 4:629712865107 | 365 | const ApiFrame::ApiFrameType frame_type = (ApiFrame::ApiFrameType)frame_cached[0]; |
spastor | 4:629712865107 | 366 | switch (frame_type) |
spastor | 4:629712865107 | 367 | { |
spastor | 4:629712865107 | 368 | case ApiFrame::RemoteCmdResp: /**< RemoteCmdResp */ |
spastor | 4:629712865107 | 369 | case ApiFrame::TxStatusZB: /**< TxStatusZB: Only for ZigBee modules */ |
spastor | 4:629712865107 | 370 | case ApiFrame::TxStatus: /**< TxStatus */ |
spastor | 4:629712865107 | 371 | framebuf = &_framebuf_syncr; |
spastor | 4:629712865107 | 372 | break; |
spastor | 4:629712865107 | 373 | |
spastor | 4:629712865107 | 374 | case ApiFrame::AtCmdResp: /**< AtCmdResp */ |
spastor | 4:629712865107 | 375 | if ((frame_cached[1] != _node_by_ni_frame_id ) && (frame_cached[2] == 'N') && (data == 'D')) |
spastor | 4:629712865107 | 376 | { |
spastor | 4:629712865107 | 377 | framebuf = &_framebuf_app; |
spastor | 4:629712865107 | 378 | } else { |
spastor | 4:629712865107 | 379 | framebuf = &_framebuf_syncr; |
spastor | 4:629712865107 | 380 | } |
spastor | 4:629712865107 | 381 | break; |
spastor | 4:629712865107 | 382 | |
spastor | 4:629712865107 | 383 | case ApiFrame::RxPacket64Bit: /**< RxPacket64Bit: Only for 802.15.4 modules */ |
spastor | 4:629712865107 | 384 | case ApiFrame::RxPacket16Bit: /**< RxPacket16Bit: Only for 802.15.4 modules */ |
spastor | 4:629712865107 | 385 | case ApiFrame::Io64Bit: /**< Io64Bit: Only for 802.15.4 modules */ |
spastor | 4:629712865107 | 386 | case ApiFrame::Io16Bit: /**< Io16Bit */ |
spastor | 4:629712865107 | 387 | case ApiFrame::AtModemStatus: /**< AtModemStatus */ |
spastor | 4:629712865107 | 388 | case ApiFrame::RxPacketAO0: /**< RxPacketAO0: Only for ZigBee modules */ |
spastor | 4:629712865107 | 389 | case ApiFrame::IoSampleRxZB: /**< IoSampleRxZB: Only for ZigBee modules */ |
spastor | 4:629712865107 | 390 | framebuf = &_framebuf_app; |
spastor | 4:629712865107 | 391 | break; |
spastor | 4:629712865107 | 392 | |
spastor | 4:629712865107 | 393 | case ApiFrame::RxPacketAO1: /**< RxPacketAO1: Only for ZigBee modules */ |
spastor | 4:629712865107 | 394 | case ApiFrame::SensorRxIndAO0: /**< SensorRxIndAO0: Only for ZigBee modules */ |
spastor | 4:629712865107 | 395 | case ApiFrame::NodeIdentIndAO0: /**< NodeIdentIndAO0: Only for ZigBee modules */ |
spastor | 4:629712865107 | 396 | case ApiFrame::OtaFwUpStatus: /**< OtaFwUpStatus */ |
spastor | 4:629712865107 | 397 | case ApiFrame::RouteRecInd: /**< RouteRecInd */ |
spastor | 4:629712865107 | 398 | case ApiFrame::Many2OneRRInd: /**< Many2OneRRInd */ |
spastor | 4:629712865107 | 399 | case ApiFrame::TxReq64Bit: /**< TxReq64Bit: Only for 802.15.4 modules */ |
spastor | 4:629712865107 | 400 | case ApiFrame::TxReq16Bit: /**< TxReq16Bit: Only for 802.15.4 modules */ |
spastor | 4:629712865107 | 401 | case ApiFrame::AtCmd: /**< AtCmd */ |
spastor | 4:629712865107 | 402 | case ApiFrame::AtCmdQueuePV: /**< AtCmdQueuePV */ |
spastor | 4:629712865107 | 403 | case ApiFrame::TxReqZB: /**< TxReqZB: Only for ZigBee modules */ |
spastor | 4:629712865107 | 404 | case ApiFrame::ExpAddrCmd: /**< ExpAddrCmd: Only for ZigBee modules */ |
spastor | 4:629712865107 | 405 | case ApiFrame::RemoteCmdReq: /**< RemoteCmdReq */ |
spastor | 4:629712865107 | 406 | case ApiFrame::CreateSrcRoute: /**< CreateSrcRoute */ |
spastor | 4:629712865107 | 407 | case ApiFrame::Invalid: /**< Invalid */ |
spastor | 4:629712865107 | 408 | framebuf = NULL; |
spastor | 4:629712865107 | 409 | break; |
spastor | 4:629712865107 | 410 | } |
spastor | 4:629712865107 | 411 | |
spastor | 4:629712865107 | 412 | if (framebuf == NULL) { |
spastor | 4:629712865107 | 413 | digi_log(LogLevelWarning, "Discarding not supported frame type %02x\r\n", frame_type); |
spastor | 4:629712865107 | 414 | rxstate = WAITING_FOR_START_FRAME; |
spastor | 4:629712865107 | 415 | } else { |
spastor | 4:629712865107 | 416 | frame = framebuf->get_next_free_frame(); |
spastor | 4:629712865107 | 417 | if (frame == NULL) { |
spastor | 4:629712865107 | 418 | /* It's not possible to achive this condition as we discard older frames and only one frame can be used by syncr. commands */ |
spastor | 4:629712865107 | 419 | assert(frame != NULL); |
spastor | 4:629712865107 | 420 | rxstate = WAITING_FOR_START_FRAME; |
spastor | 4:629712865107 | 421 | } else { |
spastor | 4:629712865107 | 422 | frame->set_data_len(framelen - 1); |
spastor | 4:629712865107 | 423 | } |
spastor | 4:629712865107 | 424 | |
spastor | 4:629712865107 | 425 | frame->set_frame_type(frame_type); |
spastor | 4:629712865107 | 426 | frame->set_data(frame_cached[1], 0); |
spastor | 4:629712865107 | 427 | frame->set_data(frame_cached[2], 1); |
spastor | 4:629712865107 | 428 | frame->set_data(data, 2); |
spastor | 4:629712865107 | 429 | } |
spastor | 4:629712865107 | 430 | } else { |
spastor | 0:fcaad0dfa051 | 431 | frame->set_data(data, bytes_read - 1); |
spastor | 0:fcaad0dfa051 | 432 | } |
spastor | 0:fcaad0dfa051 | 433 | chksum += data; |
spastor | 0:fcaad0dfa051 | 434 | bytes_read++; |
spastor | 4:629712865107 | 435 | if (bytes_read == framelen) { |
spastor | 0:fcaad0dfa051 | 436 | rxstate = WAITING_FOR_CHECKSUM; |
spastor | 4:629712865107 | 437 | } |
spastor | 0:fcaad0dfa051 | 438 | break; |
spastor | 0:fcaad0dfa051 | 439 | |
spastor | 0:fcaad0dfa051 | 440 | case WAITING_FOR_CHECKSUM: |
spastor | 0:fcaad0dfa051 | 441 | chksum += data; |
spastor | 0:fcaad0dfa051 | 442 | if (chksum == 0xFF) { |
spastor | 0:fcaad0dfa051 | 443 | /* We got a valid frame!! */ |
spastor | 0:fcaad0dfa051 | 444 | frame->dump(); |
spastor | 4:629712865107 | 445 | |
spastor | 0:fcaad0dfa051 | 446 | /* If its a _modem status frame, process it to update the status info of the library. |
spastor | 0:fcaad0dfa051 | 447 | * The frame is also queued to allow processing it other handlers registered. |
spastor | 0:fcaad0dfa051 | 448 | * Note that radio_status_update() has to be fast to minimize the impact of processing |
spastor | 0:fcaad0dfa051 | 449 | * the funcion here */ |
spastor | 0:fcaad0dfa051 | 450 | if (frame->get_frame_type() == ApiFrame::AtModemStatus) { |
spastor | 0:fcaad0dfa051 | 451 | radio_status_update((AtCmdFrame::ModemStatus)frame->get_data_at(0)); |
spastor | 4:629712865107 | 452 | if (_initializing) { |
spastor | 4:629712865107 | 453 | framebuf->free_frame(frame); |
spastor | 4:629712865107 | 454 | } else { |
spastor | 4:629712865107 | 455 | framebuf->complete_frame(frame); |
spastor | 4:629712865107 | 456 | } |
spastor | 4:629712865107 | 457 | } else { |
spastor | 4:629712865107 | 458 | framebuf->complete_frame(frame); |
spastor | 0:fcaad0dfa051 | 459 | /* Note, the frame will be released elsewhere, once it has been processed */ |
spastor | 0:fcaad0dfa051 | 460 | } |
spastor | 0:fcaad0dfa051 | 461 | } else { |
spastor | 4:629712865107 | 462 | framebuf->free_frame(frame); |
spastor | 0:fcaad0dfa051 | 463 | digi_log(LogLevelWarning, "Checksum error, got %02x, %02x\r\n", data, chksum); |
spastor | 0:fcaad0dfa051 | 464 | } |
spastor | 0:fcaad0dfa051 | 465 | /* Intentional fall-through */ |
spastor | 0:fcaad0dfa051 | 466 | default: |
spastor | 0:fcaad0dfa051 | 467 | rxstate = WAITING_FOR_START_FRAME; |
spastor | 0:fcaad0dfa051 | 468 | break; |
spastor | 4:629712865107 | 469 | } |
spastor | 0:fcaad0dfa051 | 470 | } |
spastor | 0:fcaad0dfa051 | 471 | /* TODO, signal the thread processing incoming frames */ |
spastor | 0:fcaad0dfa051 | 472 | } |
spastor | 0:fcaad0dfa051 | 473 | |
spastor | 0:fcaad0dfa051 | 474 | /* This is a pure virtual function, but exists here because its called from this class to |
spastor | 4:629712865107 | 475 | * to update the status of the object, and can be called before the construction of the |
spastor | 0:fcaad0dfa051 | 476 | * object has been completed and the virtual functions filled */ |
spastor | 0:fcaad0dfa051 | 477 | void XBee::radio_status_update(AtCmdFrame::ModemStatus modem_status) |
spastor | 0:fcaad0dfa051 | 478 | { |
hbujanda | 2:2ee1b6d51df2 | 479 | UNUSED_PARAMETER(modem_status); |
spastor | 0:fcaad0dfa051 | 480 | } |
spastor | 0:fcaad0dfa051 | 481 | |
spastor | 0:fcaad0dfa051 | 482 | void XBee::set_timeout(uint16_t timeout_ms) |
spastor | 0:fcaad0dfa051 | 483 | { |
spastor | 4:629712865107 | 484 | this->_timeout_ms = timeout_ms; |
spastor | 0:fcaad0dfa051 | 485 | } |
spastor | 0:fcaad0dfa051 | 486 | |
spastor | 0:fcaad0dfa051 | 487 | uint16_t XBee::get_timeout(void) const |
spastor | 0:fcaad0dfa051 | 488 | { |
spastor | 0:fcaad0dfa051 | 489 | return _timeout_ms; |
spastor | 0:fcaad0dfa051 | 490 | } |
spastor | 0:fcaad0dfa051 | 491 | |
spastor | 4:629712865107 | 492 | ApiFrame * XBee::get_this_api_frame(uint8_t id, ApiFrame::ApiFrameType type, |
spastor | 0:fcaad0dfa051 | 493 | ApiFrame::ApiFrameType type2) |
spastor | 0:fcaad0dfa051 | 494 | { |
spastor | 4:629712865107 | 495 | Timer timer = Timer(); |
spastor | 4:629712865107 | 496 | timer.start(); |
spastor | 0:fcaad0dfa051 | 497 | |
spastor | 4:629712865107 | 498 | while (timer.read_ms() < _timeout_ms) { |
spastor | 4:629712865107 | 499 | ApiFrame * frame = _framebuf_syncr.get_next_complete_frame(); |
spastor | 0:fcaad0dfa051 | 500 | if (frame == NULL) { |
spastor | 0:fcaad0dfa051 | 501 | wait_ms(10); |
spastor | 0:fcaad0dfa051 | 502 | continue; |
spastor | 0:fcaad0dfa051 | 503 | } |
spastor | 0:fcaad0dfa051 | 504 | |
spastor | 0:fcaad0dfa051 | 505 | if ((frame->get_frame_type() != type) && |
spastor | 0:fcaad0dfa051 | 506 | (frame->get_frame_type() != type2)) { |
spastor | 4:629712865107 | 507 | _framebuf_syncr.complete_frame(frame); |
spastor | 0:fcaad0dfa051 | 508 | wait_ms(1); |
spastor | 0:fcaad0dfa051 | 509 | continue; |
spastor | 0:fcaad0dfa051 | 510 | } |
spastor | 0:fcaad0dfa051 | 511 | |
spastor | 4:629712865107 | 512 | if (frame->get_data_at(ATCMD_RESP_FRAME_ID_OFFSET) != id) { |
spastor | 4:629712865107 | 513 | _framebuf_syncr.complete_frame(frame); |
spastor | 4:629712865107 | 514 | wait_ms(1); |
spastor | 4:629712865107 | 515 | continue; |
spastor | 4:629712865107 | 516 | } |
spastor | 4:629712865107 | 517 | |
spastor | 4:629712865107 | 518 | /* frame found */ |
spastor | 0:fcaad0dfa051 | 519 | return frame; |
spastor | 0:fcaad0dfa051 | 520 | } |
spastor | 4:629712865107 | 521 | |
spastor | 0:fcaad0dfa051 | 522 | digi_log(LogLevelWarning, "Frame type: %02x, id: %02x, timeout\r\n", (uint8_t)type, id); |
spastor | 0:fcaad0dfa051 | 523 | |
spastor | 0:fcaad0dfa051 | 524 | return NULL; |
spastor | 0:fcaad0dfa051 | 525 | } |
spastor | 0:fcaad0dfa051 | 526 | |
spastor | 0:fcaad0dfa051 | 527 | void XBee::send_byte_escaping_if(uint8_t data) |
spastor | 0:fcaad0dfa051 | 528 | { |
spastor | 0:fcaad0dfa051 | 529 | if (IS_API2()) { |
spastor | 0:fcaad0dfa051 | 530 | switch (data) { |
spastor | 0:fcaad0dfa051 | 531 | case DR_START_OF_FRAME: |
spastor | 0:fcaad0dfa051 | 532 | case DR_ESCAPE_BYTE: |
spastor | 0:fcaad0dfa051 | 533 | case DR_XON_BYTE: |
spastor | 0:fcaad0dfa051 | 534 | case DR_XOFF_BYTE: |
spastor | 0:fcaad0dfa051 | 535 | _uart->putc(DR_ESCAPE_BYTE); |
spastor | 0:fcaad0dfa051 | 536 | _uart->putc(data ^ DR_ESCAPE_XOR_BYTE); |
spastor | 0:fcaad0dfa051 | 537 | break; |
spastor | 0:fcaad0dfa051 | 538 | default: |
spastor | 0:fcaad0dfa051 | 539 | _uart->putc(data); |
spastor | 0:fcaad0dfa051 | 540 | } |
spastor | 0:fcaad0dfa051 | 541 | } else { |
spastor | 0:fcaad0dfa051 | 542 | _uart->putc(data); |
spastor | 4:629712865107 | 543 | } |
spastor | 0:fcaad0dfa051 | 544 | } |
spastor | 0:fcaad0dfa051 | 545 | |
spastor | 0:fcaad0dfa051 | 546 | void XBee::send_api_frame(ApiFrame *frame) |
spastor | 0:fcaad0dfa051 | 547 | { |
spastor | 0:fcaad0dfa051 | 548 | uint8_t chksum; |
spastor | 0:fcaad0dfa051 | 549 | const uint8_t *data; |
spastor | 0:fcaad0dfa051 | 550 | uint16_t bytes_sent = 0, frame_len; |
spastor | 4:629712865107 | 551 | |
spastor | 0:fcaad0dfa051 | 552 | frame->dump(); |
spastor | 4:629712865107 | 553 | |
spastor | 0:fcaad0dfa051 | 554 | frame_len = 1 + frame->get_data_len(); /* frame type + frame payload */ |
spastor | 0:fcaad0dfa051 | 555 | data = frame->get_data(); |
spastor | 4:629712865107 | 556 | |
spastor | 0:fcaad0dfa051 | 557 | /* Send the start of frame delimiter */ |
spastor | 0:fcaad0dfa051 | 558 | _uart->putc(DR_START_OF_FRAME); |
spastor | 4:629712865107 | 559 | |
spastor | 0:fcaad0dfa051 | 560 | /* Now the length */ |
spastor | 0:fcaad0dfa051 | 561 | send_byte_escaping_if((uint8_t)(frame_len >> 8)); |
spastor | 0:fcaad0dfa051 | 562 | send_byte_escaping_if((uint8_t)frame_len); |
spastor | 0:fcaad0dfa051 | 563 | |
spastor | 0:fcaad0dfa051 | 564 | /* Send the Frame type and then the payload */ |
spastor | 0:fcaad0dfa051 | 565 | chksum = (uint8_t)frame->get_frame_type(); |
spastor | 0:fcaad0dfa051 | 566 | send_byte_escaping_if(chksum); |
spastor | 0:fcaad0dfa051 | 567 | bytes_sent++; |
spastor | 0:fcaad0dfa051 | 568 | |
spastor | 0:fcaad0dfa051 | 569 | /* And now, send the packet payload */ |
spastor | 0:fcaad0dfa051 | 570 | while (bytes_sent++ < frame_len) { |
spastor | 0:fcaad0dfa051 | 571 | chksum += *data; |
spastor | 0:fcaad0dfa051 | 572 | send_byte_escaping_if(*data++); |
spastor | 0:fcaad0dfa051 | 573 | } |
spastor | 4:629712865107 | 574 | |
spastor | 0:fcaad0dfa051 | 575 | /* And finally send the checksum */ |
spastor | 0:fcaad0dfa051 | 576 | send_byte_escaping_if(~chksum); |
spastor | 0:fcaad0dfa051 | 577 | } |
spastor | 4:629712865107 | 578 | |
spastor | 0:fcaad0dfa051 | 579 | RadioStatus XBee::register_frame_handler(FrameHandler *const handler) |
spastor | 0:fcaad0dfa051 | 580 | { |
spastor | 0:fcaad0dfa051 | 581 | if (handler != NULL) { |
spastor | 0:fcaad0dfa051 | 582 | for (int i = 0; i < MAX_FRAME_HANDLERS; i++) { |
spastor | 4:629712865107 | 583 | if (_fhandlers[i] != NULL) { |
spastor | 0:fcaad0dfa051 | 584 | continue; |
spastor | 4:629712865107 | 585 | } |
spastor | 0:fcaad0dfa051 | 586 | _fhandlers[i] = handler; |
spastor | 0:fcaad0dfa051 | 587 | return Success; |
spastor | 0:fcaad0dfa051 | 588 | } |
spastor | 0:fcaad0dfa051 | 589 | } |
spastor | 0:fcaad0dfa051 | 590 | |
spastor | 0:fcaad0dfa051 | 591 | digi_log(LogLevelError, "No more Frame Handlers available. Increase MAX_FRAME_HANDLERS define\r\n"); |
spastor | 4:629712865107 | 592 | |
spastor | 0:fcaad0dfa051 | 593 | return Failure; |
spastor | 4:629712865107 | 594 | } |
spastor | 0:fcaad0dfa051 | 595 | |
spastor | 0:fcaad0dfa051 | 596 | RadioStatus XBee::unregister_frame_handler(FrameHandler *const handler) |
spastor | 0:fcaad0dfa051 | 597 | { |
spastor | 0:fcaad0dfa051 | 598 | int i; |
spastor | 0:fcaad0dfa051 | 599 | |
spastor | 0:fcaad0dfa051 | 600 | if (handler != NULL) { |
spastor | 0:fcaad0dfa051 | 601 | for (i = 0; i < MAX_FRAME_HANDLERS; i++) { |
spastor | 4:629712865107 | 602 | if (_fhandlers[i] == handler) { |
spastor | 0:fcaad0dfa051 | 603 | break; |
spastor | 4:629712865107 | 604 | } |
spastor | 0:fcaad0dfa051 | 605 | } |
spastor | 4:629712865107 | 606 | |
spastor | 4:629712865107 | 607 | if (i == MAX_FRAME_HANDLERS) { |
spastor | 0:fcaad0dfa051 | 608 | return Failure; |
spastor | 4:629712865107 | 609 | } |
spastor | 4:629712865107 | 610 | |
spastor | 0:fcaad0dfa051 | 611 | do { |
spastor | 4:629712865107 | 612 | if (i == MAX_FRAME_HANDLERS - 1) { |
spastor | 0:fcaad0dfa051 | 613 | _fhandlers[i] = NULL; |
spastor | 4:629712865107 | 614 | } else { |
spastor | 0:fcaad0dfa051 | 615 | _fhandlers[i] = _fhandlers[i + 1]; |
spastor | 4:629712865107 | 616 | } |
spastor | 0:fcaad0dfa051 | 617 | } while (++i < MAX_FRAME_HANDLERS); |
spastor | 0:fcaad0dfa051 | 618 | } |
spastor | 0:fcaad0dfa051 | 619 | |
spastor | 0:fcaad0dfa051 | 620 | return Success; |
spastor | 0:fcaad0dfa051 | 621 | } |
spastor | 0:fcaad0dfa051 | 622 | |
spastor | 0:fcaad0dfa051 | 623 | XBee::RadioProtocol XBee::get_radio_protocol(void) const |
spastor | 0:fcaad0dfa051 | 624 | { |
spastor | 0:fcaad0dfa051 | 625 | enum HardwareVersion { |
spastor | 0:fcaad0dfa051 | 626 | #ifdef EXTRA_XBEE_PROTOCOLS |
spastor | 0:fcaad0dfa051 | 627 | X09_009 = 0x01, |
spastor | 0:fcaad0dfa051 | 628 | X09_019 = 0x02, |
spastor | 0:fcaad0dfa051 | 629 | XH9_009 = 0x03, |
spastor | 0:fcaad0dfa051 | 630 | XH9_019 = 0x04, |
spastor | 0:fcaad0dfa051 | 631 | X24_009 = 0x05, |
spastor | 0:fcaad0dfa051 | 632 | X24_019 = 0x06, |
spastor | 0:fcaad0dfa051 | 633 | X09_001 = 0x07, |
spastor | 0:fcaad0dfa051 | 634 | XH9_001 = 0x08, |
spastor | 0:fcaad0dfa051 | 635 | X08_004 = 0x09, |
spastor | 0:fcaad0dfa051 | 636 | XC09_009 = 0x0A, |
spastor | 0:fcaad0dfa051 | 637 | XC09_038 = 0x0B, |
spastor | 0:fcaad0dfa051 | 638 | X24_038 = 0x0C, |
spastor | 0:fcaad0dfa051 | 639 | X09_009_TX = 0x0D, |
spastor | 0:fcaad0dfa051 | 640 | X09_019_TX = 0x0E, |
spastor | 0:fcaad0dfa051 | 641 | XH9_009_TX = 0x0F, |
spastor | 0:fcaad0dfa051 | 642 | XH9_019_TX = 0x10, |
spastor | 0:fcaad0dfa051 | 643 | X09_001_TX = 0x11, |
spastor | 0:fcaad0dfa051 | 644 | XH9_001_TX = 0x12, |
spastor | 0:fcaad0dfa051 | 645 | XT09B_XXX = 0x13, |
spastor | 0:fcaad0dfa051 | 646 | XT09_XXX = 0x14, |
spastor | 0:fcaad0dfa051 | 647 | XC08_009 = 0x15, |
spastor | 0:fcaad0dfa051 | 648 | XC08_038 = 0x16, |
spastor | 0:fcaad0dfa051 | 649 | #endif |
spastor | 0:fcaad0dfa051 | 650 | XB24_AXX_XX = 0x17, |
spastor | 0:fcaad0dfa051 | 651 | XBP24_AXX_XX = 0x18, |
spastor | 0:fcaad0dfa051 | 652 | XB24_BXIX_XXX = 0x19, |
spastor | 0:fcaad0dfa051 | 653 | XBP24_BXIX_XXX = 0x1A, |
spastor | 0:fcaad0dfa051 | 654 | #ifdef EXTRA_XBEE_PROTOCOLS |
spastor | 0:fcaad0dfa051 | 655 | XBP09_DXIX_XXX = 0x1B, |
spastor | 0:fcaad0dfa051 | 656 | XBP09_XCXX_XXX = 0x1C, |
spastor | 0:fcaad0dfa051 | 657 | XBP08_DXXX_XXX = 0x1D, |
spastor | 0:fcaad0dfa051 | 658 | #endif |
spastor | 0:fcaad0dfa051 | 659 | XBP24B = 0x1E, |
spastor | 0:fcaad0dfa051 | 660 | #ifdef EXTRA_XBEE_PROTOCOLS |
spastor | 0:fcaad0dfa051 | 661 | XB24_WF = 0x1F, |
spastor | 0:fcaad0dfa051 | 662 | AMBER_MBUS = 0x20, |
spastor | 0:fcaad0dfa051 | 663 | #endif |
spastor | 0:fcaad0dfa051 | 664 | XBP24C = 0x21, |
spastor | 0:fcaad0dfa051 | 665 | XB24C = 0x22, |
spastor | 0:fcaad0dfa051 | 666 | #ifdef EXTRA_XBEE_PROTOCOLS |
spastor | 0:fcaad0dfa051 | 667 | XSC_GEN3 = 0x23, |
spastor | 0:fcaad0dfa051 | 668 | SRD_868_GEN3 = 0x24, |
spastor | 0:fcaad0dfa051 | 669 | ABANDONATED = 0x25, |
spastor | 0:fcaad0dfa051 | 670 | SMT_900LP = 0x26, |
spastor | 0:fcaad0dfa051 | 671 | WIFI_ATHEROS = 0x27, |
spastor | 0:fcaad0dfa051 | 672 | SMT_WIFI_ATHEROS = 0x28, |
spastor | 0:fcaad0dfa051 | 673 | SMT_475LP = 0x29, |
spastor | 0:fcaad0dfa051 | 674 | XBEE_CELL_TH = 0x2A, |
spastor | 0:fcaad0dfa051 | 675 | XLR_MODULE = 0x2B, |
spastor | 0:fcaad0dfa051 | 676 | XB900HP_NZ = 0x2C, |
spastor | 0:fcaad0dfa051 | 677 | XBP24C_TH_DIP = 0x2D, |
spastor | 0:fcaad0dfa051 | 678 | XB24C_TH_DIP = 0x2E, |
spastor | 0:fcaad0dfa051 | 679 | XLR_BASEBOARD = 0x2F |
spastor | 0:fcaad0dfa051 | 680 | #endif |
spastor | 0:fcaad0dfa051 | 681 | }; |
spastor | 0:fcaad0dfa051 | 682 | const bool fw_4_bytes_len = _fw_version > 0x0FFF && _fw_version < 0xFFFF; |
spastor | 0:fcaad0dfa051 | 683 | const uint8_t fw_nibble_3 = (_fw_version >> (4 * 3)) & 0x000F; |
spastor | 0:fcaad0dfa051 | 684 | const uint8_t fw_nibble_1 = (_fw_version >> (4 * 1)) & 0x000F; |
spastor | 0:fcaad0dfa051 | 685 | const uint8_t fw_nibble_0 = (_fw_version >> (4 * 0)) & 0x000F; |
spastor | 0:fcaad0dfa051 | 686 | const uint8_t hw_version_msb = _hw_version >> 8; |
spastor | 0:fcaad0dfa051 | 687 | |
spastor | 0:fcaad0dfa051 | 688 | if (hw_version_msb == XB24_AXX_XX || hw_version_msb == XBP24_AXX_XX) { |
spastor | 0:fcaad0dfa051 | 689 | #ifdef EXTRA_XBEE_PROTOCOLS |
spastor | 0:fcaad0dfa051 | 690 | if (fw_4_bytes_len && fw_nibble_3 == 8) { |
spastor | 0:fcaad0dfa051 | 691 | return DigiMesh; |
spastor | 0:fcaad0dfa051 | 692 | } |
spastor | 0:fcaad0dfa051 | 693 | return Raw_802_15_4; |
spastor | 0:fcaad0dfa051 | 694 | #else |
spastor | 0:fcaad0dfa051 | 695 | if (!(fw_4_bytes_len && fw_nibble_3 == 8)) { |
spastor | 0:fcaad0dfa051 | 696 | return Raw_802_15_4; |
spastor | 0:fcaad0dfa051 | 697 | } |
spastor | 0:fcaad0dfa051 | 698 | #endif |
spastor | 0:fcaad0dfa051 | 699 | } else if (hw_version_msb == XB24_BXIX_XXX || hw_version_msb == XBP24_BXIX_XXX) { |
spastor | 0:fcaad0dfa051 | 700 | if (fw_4_bytes_len && ((fw_nibble_3 == 1 && fw_nibble_1 == 2 && fw_nibble_0 == 0) || fw_nibble_3 == 2)) { |
spastor | 0:fcaad0dfa051 | 701 | return ZigBee; |
spastor | 0:fcaad0dfa051 | 702 | } |
spastor | 0:fcaad0dfa051 | 703 | #ifdef EXTRA_XBEE_PROTOCOLS |
spastor | 0:fcaad0dfa051 | 704 | if (fw_4_bytes_len && fw_nibble_3 == 3) { |
spastor | 0:fcaad0dfa051 | 705 | return SmartEnergy; |
spastor | 0:fcaad0dfa051 | 706 | } |
spastor | 0:fcaad0dfa051 | 707 | return ZNet; |
spastor | 0:fcaad0dfa051 | 708 | } else if (hw_version_msb == XBP09_DXIX_XXX) { |
spastor | 0:fcaad0dfa051 | 709 | if (fw_4_bytes_len && (fw_nibble_3 == 8 || fw_nibble_1 == 8)) { |
spastor | 0:fcaad0dfa051 | 710 | return DigiMesh; |
spastor | 0:fcaad0dfa051 | 711 | } |
spastor | 0:fcaad0dfa051 | 712 | return DigiPoint; |
spastor | 0:fcaad0dfa051 | 713 | } else if (hw_version_msb == XBP08_DXXX_XXX) { |
spastor | 0:fcaad0dfa051 | 714 | return DigiPoint; |
spastor | 0:fcaad0dfa051 | 715 | #endif |
spastor | 0:fcaad0dfa051 | 716 | } else if (hw_version_msb == XBP24B) { |
spastor | 0:fcaad0dfa051 | 717 | #ifdef EXTRA_XBEE_PROTOCOLS |
spastor | 0:fcaad0dfa051 | 718 | if (fw_4_bytes_len && fw_nibble_3 == 3) { |
spastor | 0:fcaad0dfa051 | 719 | return SmartEnergy; |
spastor | 0:fcaad0dfa051 | 720 | } |
spastor | 0:fcaad0dfa051 | 721 | return ZigBee; |
spastor | 0:fcaad0dfa051 | 722 | #else |
spastor | 0:fcaad0dfa051 | 723 | if (!(fw_4_bytes_len && fw_nibble_3 == 3)) { |
spastor | 0:fcaad0dfa051 | 724 | return ZigBee; |
spastor | 0:fcaad0dfa051 | 725 | } |
spastor | 0:fcaad0dfa051 | 726 | #endif |
spastor | 0:fcaad0dfa051 | 727 | #ifdef EXTRA_XBEE_PROTOCOLS |
spastor | 0:fcaad0dfa051 | 728 | } else if (hw_version_msb == XB24_WF || hw_version_msb == WIFI_ATHEROS || hw_version_msb == SMT_WIFI_ATHEROS) { |
spastor | 0:fcaad0dfa051 | 729 | return XBeeWiFi; |
spastor | 0:fcaad0dfa051 | 730 | #endif |
spastor | 0:fcaad0dfa051 | 731 | } else if (hw_version_msb == XBP24C || hw_version_msb == XB24C) { |
spastor | 0:fcaad0dfa051 | 732 | #ifdef EXTRA_XBEE_PROTOCOLS |
spastor | 0:fcaad0dfa051 | 733 | if (fw_4_bytes_len && fw_nibble_3 == 5) { |
spastor | 0:fcaad0dfa051 | 734 | return SmartEnergy; |
spastor | 0:fcaad0dfa051 | 735 | } |
spastor | 0:fcaad0dfa051 | 736 | return ZigBee; |
spastor | 0:fcaad0dfa051 | 737 | #else |
spastor | 0:fcaad0dfa051 | 738 | if (!(fw_4_bytes_len && fw_nibble_3 == 5)) { |
spastor | 0:fcaad0dfa051 | 739 | return ZigBee; |
spastor | 0:fcaad0dfa051 | 740 | } |
spastor | 0:fcaad0dfa051 | 741 | #endif |
spastor | 0:fcaad0dfa051 | 742 | #ifdef EXTRA_XBEE_PROTOCOLS |
spastor | 0:fcaad0dfa051 | 743 | } else if (hw_version_msb == XSC_GEN3 || hw_version_msb == SRD_868_GEN3) { |
spastor | 0:fcaad0dfa051 | 744 | if (fw_4_bytes_len && fw_nibble_3 == 8) { |
spastor | 0:fcaad0dfa051 | 745 | return DigiMesh; |
spastor | 0:fcaad0dfa051 | 746 | } else if (fw_4_bytes_len && fw_nibble_3 == 1) { |
spastor | 0:fcaad0dfa051 | 747 | return DigiPoint; |
spastor | 0:fcaad0dfa051 | 748 | } |
spastor | 0:fcaad0dfa051 | 749 | return None; |
spastor | 0:fcaad0dfa051 | 750 | } else if (hw_version_msb == XBEE_CELL_TH) { |
spastor | 0:fcaad0dfa051 | 751 | return None; |
spastor | 0:fcaad0dfa051 | 752 | } else if (hw_version_msb == XLR_MODULE) { |
spastor | 0:fcaad0dfa051 | 753 | return None; |
spastor | 0:fcaad0dfa051 | 754 | } else if (hw_version_msb == XLR_BASEBOARD) { |
spastor | 0:fcaad0dfa051 | 755 | return None; |
spastor | 0:fcaad0dfa051 | 756 | } else if (hw_version_msb == XB900HP_NZ) { |
spastor | 0:fcaad0dfa051 | 757 | return DigiPoint; |
spastor | 0:fcaad0dfa051 | 758 | } |
spastor | 0:fcaad0dfa051 | 759 | #else |
spastor | 0:fcaad0dfa051 | 760 | } |
spastor | 0:fcaad0dfa051 | 761 | #endif |
spastor | 0:fcaad0dfa051 | 762 | |
spastor | 0:fcaad0dfa051 | 763 | return None; |
spastor | 0:fcaad0dfa051 | 764 | } |
spastor | 0:fcaad0dfa051 | 765 | |
spastor | 0:fcaad0dfa051 | 766 | #define TX_STATUS_OFFSET_ZB 4 |
spastor | 0:fcaad0dfa051 | 767 | #define TX_STATUS_OFFSET_802 1 |
spastor | 0:fcaad0dfa051 | 768 | |
spastor | 0:fcaad0dfa051 | 769 | TxStatus XBee::send_data(ApiFrame *frame) |
spastor | 0:fcaad0dfa051 | 770 | { |
spastor | 0:fcaad0dfa051 | 771 | TxStatus resp = TxStatusTimeout; |
spastor | 0:fcaad0dfa051 | 772 | ApiFrame *resp_frame; |
spastor | 0:fcaad0dfa051 | 773 | |
spastor | 0:fcaad0dfa051 | 774 | send_api_frame(frame); |
spastor | 0:fcaad0dfa051 | 775 | |
spastor | 4:629712865107 | 776 | /* Wait for the transmit status response packet */ |
spastor | 4:629712865107 | 777 | resp_frame = get_this_api_frame(frame->get_frame_id(), |
spastor | 0:fcaad0dfa051 | 778 | ApiFrame::TxStatusZB, ApiFrame::TxStatus); |
spastor | 4:629712865107 | 779 | if (resp_frame == NULL) { |
spastor | 0:fcaad0dfa051 | 780 | return resp; |
spastor | 4:629712865107 | 781 | } |
spastor | 4:629712865107 | 782 | |
spastor | 0:fcaad0dfa051 | 783 | uint8_t index = resp_frame->get_frame_type() == ApiFrame::TxStatusZB ? |
spastor | 0:fcaad0dfa051 | 784 | TX_STATUS_OFFSET_ZB : TX_STATUS_OFFSET_802; |
spastor | 4:629712865107 | 785 | |
spastor | 0:fcaad0dfa051 | 786 | resp = (TxStatus)resp_frame->get_data_at(index); |
spastor | 4:629712865107 | 787 | |
spastor | 0:fcaad0dfa051 | 788 | /* Once processed, remove the frame from the buffer */ |
spastor | 4:629712865107 | 789 | _framebuf_syncr.free_frame(resp_frame); |
spastor | 4:629712865107 | 790 | |
spastor | 0:fcaad0dfa051 | 791 | return resp; |
spastor | 0:fcaad0dfa051 | 792 | } |
spastor | 0:fcaad0dfa051 | 793 | |
spastor | 3:8662ebe83570 | 794 | TxStatus XBee::send_data_broadcast(const uint8_t *const data, uint16_t len, bool syncr) |
spastor | 0:fcaad0dfa051 | 795 | { |
spastor | 0:fcaad0dfa051 | 796 | const RemoteXBee remoteDevice = RemoteXBee(ADDR64_BROADCAST); |
spastor | 3:8662ebe83570 | 797 | return send_data(remoteDevice, data, len, syncr); |
spastor | 0:fcaad0dfa051 | 798 | } |
spastor | 0:fcaad0dfa051 | 799 | |
spastor | 4:629712865107 | 800 | uint32_t XBee::process_rx_frames() |
spastor | 0:fcaad0dfa051 | 801 | { |
spastor | 0:fcaad0dfa051 | 802 | ApiFrame *frame = NULL; |
spastor | 0:fcaad0dfa051 | 803 | |
spastor | 4:629712865107 | 804 | while ((frame = _framebuf_app.get_next_complete_frame()) != NULL) { |
spastor | 0:fcaad0dfa051 | 805 | for (int i = 0; i < MAX_FRAME_HANDLERS; i++) { |
spastor | 0:fcaad0dfa051 | 806 | |
spastor | 0:fcaad0dfa051 | 807 | if (_fhandlers[i] == NULL) { |
spastor | 0:fcaad0dfa051 | 808 | /* No more handlers, break here */ |
spastor | 0:fcaad0dfa051 | 809 | break; |
spastor | 0:fcaad0dfa051 | 810 | } |
spastor | 0:fcaad0dfa051 | 811 | |
spastor | 0:fcaad0dfa051 | 812 | /* Check if frame and handler match, if not... go for the next one */ |
spastor | 0:fcaad0dfa051 | 813 | if (frame->get_frame_type() != _fhandlers[i]->get_type()) { |
spastor | 0:fcaad0dfa051 | 814 | continue; |
spastor | 0:fcaad0dfa051 | 815 | } |
spastor | 0:fcaad0dfa051 | 816 | |
spastor | 0:fcaad0dfa051 | 817 | _fhandlers[i]->process_frame_data(frame); |
spastor | 0:fcaad0dfa051 | 818 | } |
spastor | 4:629712865107 | 819 | |
spastor | 0:fcaad0dfa051 | 820 | /* Once processed, remove the frame from the buffer */ |
spastor | 4:629712865107 | 821 | _framebuf_app.free_frame(frame); |
spastor | 4:629712865107 | 822 | } |
spastor | 0:fcaad0dfa051 | 823 | |
spastor | 4:629712865107 | 824 | const uint32_t dropped_frames = _framebuf_app.get_dropped_frames_count(); |
spastor | 4:629712865107 | 825 | if (dropped_frames != 0) { |
spastor | 4:629712865107 | 826 | digi_log(LogLevelWarning, "process_rx_frames: %d frames dropped!!!\r\n", dropped_frames); |
spastor | 4:629712865107 | 827 | } |
spastor | 4:629712865107 | 828 | |
spastor | 4:629712865107 | 829 | return dropped_frames; |
spastor | 0:fcaad0dfa051 | 830 | } |
spastor | 0:fcaad0dfa051 | 831 | |
spastor | 0:fcaad0dfa051 | 832 | void XBee::register_modem_status_cb(modem_status_cb_t function) |
spastor | 0:fcaad0dfa051 | 833 | { |
spastor | 0:fcaad0dfa051 | 834 | if (_modem_status_handler == NULL) { |
spastor | 0:fcaad0dfa051 | 835 | _modem_status_handler = new FH_ModemStatus(); |
spastor | 0:fcaad0dfa051 | 836 | register_frame_handler(_modem_status_handler); |
spastor | 0:fcaad0dfa051 | 837 | } |
spastor | 0:fcaad0dfa051 | 838 | _modem_status_handler->register_modem_status_cb(function); |
spastor | 0:fcaad0dfa051 | 839 | } |
spastor | 0:fcaad0dfa051 | 840 | |
spastor | 0:fcaad0dfa051 | 841 | void XBee::unregister_modem_status_cb() |
spastor | 0:fcaad0dfa051 | 842 | { |
spastor | 0:fcaad0dfa051 | 843 | if (_modem_status_handler != NULL) { |
spastor | 0:fcaad0dfa051 | 844 | _modem_status_handler->unregister_modem_status_cb(); |
spastor | 0:fcaad0dfa051 | 845 | unregister_frame_handler(_modem_status_handler); |
spastor | 0:fcaad0dfa051 | 846 | delete _modem_status_handler; |
spastor | 0:fcaad0dfa051 | 847 | _modem_status_handler = NULL; /* as delete does not set to NULL */ |
spastor | 0:fcaad0dfa051 | 848 | } |
spastor | 0:fcaad0dfa051 | 849 | } |
spastor | 0:fcaad0dfa051 | 850 | |
spastor | 4:629712865107 | 851 | int XBee::get_AI(void) |
spastor | 4:629712865107 | 852 | { |
spastor | 4:629712865107 | 853 | uint32_t atai; |
spastor | 4:629712865107 | 854 | const AtCmdFrame::AtCmdResp status = get_param("AI", &atai); |
spastor | 4:629712865107 | 855 | |
spastor | 4:629712865107 | 856 | if (status != AtCmdFrame::AtCmdRespOk) { |
spastor | 4:629712865107 | 857 | digi_log(LogLevelError, "get_association_indication() failed with %d\r\n", status); |
spastor | 4:629712865107 | 858 | return -1; |
spastor | 4:629712865107 | 859 | } |
spastor | 4:629712865107 | 860 | return atai; |
spastor | 4:629712865107 | 861 | } |