Vergil Cola
/
MQTTGatewayK64
Fork of my MQTTGateway
XbeeMonitor/XBeeLib/FrameHandlers/FH_IoDataSampleZB.cpp@0:f1d3878b8dd9, 2017-04-08 (annotated)
- Committer:
- vpcola
- Date:
- Sat Apr 08 14:45:51 2017 +0000
- Revision:
- 0:f1d3878b8dd9
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
vpcola | 0:f1d3878b8dd9 | 1 | /** |
vpcola | 0:f1d3878b8dd9 | 2 | * Copyright (c) 2015 Digi International Inc., |
vpcola | 0:f1d3878b8dd9 | 3 | * All rights not expressly granted are reserved. |
vpcola | 0:f1d3878b8dd9 | 4 | * |
vpcola | 0:f1d3878b8dd9 | 5 | * This Source Code Form is subject to the terms of the Mozilla Public |
vpcola | 0:f1d3878b8dd9 | 6 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
vpcola | 0:f1d3878b8dd9 | 7 | * You can obtain one at http://mozilla.org/MPL/2.0/. |
vpcola | 0:f1d3878b8dd9 | 8 | * |
vpcola | 0:f1d3878b8dd9 | 9 | * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343 |
vpcola | 0:f1d3878b8dd9 | 10 | * ======================================================================= |
vpcola | 0:f1d3878b8dd9 | 11 | */ |
vpcola | 0:f1d3878b8dd9 | 12 | |
vpcola | 0:f1d3878b8dd9 | 13 | #include "XBeeLib.h" |
vpcola | 0:f1d3878b8dd9 | 14 | |
vpcola | 0:f1d3878b8dd9 | 15 | using namespace XBeeLib; |
vpcola | 0:f1d3878b8dd9 | 16 | |
vpcola | 0:f1d3878b8dd9 | 17 | /** Class constructor */ |
vpcola | 0:f1d3878b8dd9 | 18 | FH_IoDataSampeZB::FH_IoDataSampeZB() : FrameHandler(ApiFrame::IoSampleRxZBDM), |
vpcola | 0:f1d3878b8dd9 | 19 | io_data_cb(NULL) |
vpcola | 0:f1d3878b8dd9 | 20 | { |
vpcola | 0:f1d3878b8dd9 | 21 | } |
vpcola | 0:f1d3878b8dd9 | 22 | |
vpcola | 0:f1d3878b8dd9 | 23 | /** Class destructor */ |
vpcola | 0:f1d3878b8dd9 | 24 | FH_IoDataSampeZB::~FH_IoDataSampeZB() |
vpcola | 0:f1d3878b8dd9 | 25 | { |
vpcola | 0:f1d3878b8dd9 | 26 | } |
vpcola | 0:f1d3878b8dd9 | 27 | |
vpcola | 0:f1d3878b8dd9 | 28 | void FH_IoDataSampeZB::register_io_data_cb(io_data_cb_zb_t function) |
vpcola | 0:f1d3878b8dd9 | 29 | { |
vpcola | 0:f1d3878b8dd9 | 30 | io_data_cb = function; |
vpcola | 0:f1d3878b8dd9 | 31 | } |
vpcola | 0:f1d3878b8dd9 | 32 | |
vpcola | 0:f1d3878b8dd9 | 33 | void FH_IoDataSampeZB::unregister_io_data_cb() |
vpcola | 0:f1d3878b8dd9 | 34 | { |
vpcola | 0:f1d3878b8dd9 | 35 | io_data_cb = NULL; |
vpcola | 0:f1d3878b8dd9 | 36 | } |
vpcola | 0:f1d3878b8dd9 | 37 | |
vpcola | 0:f1d3878b8dd9 | 38 | /* ZB RX packet offsets */ |
vpcola | 0:f1d3878b8dd9 | 39 | #define ZB_IO_SAMPLE_ADDR16_MSB_OFFSET 8 |
vpcola | 0:f1d3878b8dd9 | 40 | #define ZB_IO_SAMPLE_ADDR16_LSB_OFFSET 9 |
vpcola | 0:f1d3878b8dd9 | 41 | #define ZB_IO_SAMPLE_DATA_OFFSET 11 |
vpcola | 0:f1d3878b8dd9 | 42 | |
vpcola | 0:f1d3878b8dd9 | 43 | void FH_IoDataSampeZB::process_frame_data(const ApiFrame *const frame) |
vpcola | 0:f1d3878b8dd9 | 44 | { |
vpcola | 0:f1d3878b8dd9 | 45 | const uint8_t * const datap = frame->get_data();; |
vpcola | 0:f1d3878b8dd9 | 46 | |
vpcola | 0:f1d3878b8dd9 | 47 | /* The caller checks that the type matches, so no need to check it here again */ |
vpcola | 0:f1d3878b8dd9 | 48 | if (io_data_cb == NULL) { |
vpcola | 0:f1d3878b8dd9 | 49 | return; |
vpcola | 0:f1d3878b8dd9 | 50 | } |
vpcola | 0:f1d3878b8dd9 | 51 | |
vpcola | 0:f1d3878b8dd9 | 52 | /* We got an IO packet, decode it... */ |
vpcola | 0:f1d3878b8dd9 | 53 | const uint64_t sender64 = addr64_from_uint8_t(datap); |
vpcola | 0:f1d3878b8dd9 | 54 | const uint16_t sender16 = ADDR16(datap[ZB_IO_SAMPLE_ADDR16_MSB_OFFSET], datap[ZB_IO_SAMPLE_ADDR16_LSB_OFFSET]); |
vpcola | 0:f1d3878b8dd9 | 55 | const RemoteXBeeZB sender = RemoteXBeeZB(sender64, sender16); |
vpcola | 0:f1d3878b8dd9 | 56 | const IOSampleZB ioSample = IOSampleZB(&datap[ZB_IO_SAMPLE_DATA_OFFSET], frame->get_data_len() - ZB_IO_SAMPLE_DATA_OFFSET); |
vpcola | 0:f1d3878b8dd9 | 57 | |
vpcola | 0:f1d3878b8dd9 | 58 | io_data_cb(sender, ioSample); |
vpcola | 0:f1d3878b8dd9 | 59 | } |