Library to easily communicate with XBee modules.
Fork of XBeeLib by
FrameHandlers/FH_IoDataSample802.cpp@10:055802660f2e, 2018-03-26 (annotated)
- Committer:
- basvuyk
- Date:
- Mon Mar 26 13:45:24 2018 +0000
- Revision:
- 10:055802660f2e
- Parent:
- 4:629712865107
xbee changes
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 | |
spastor | 0:fcaad0dfa051 | 15 | using namespace XBeeLib; |
spastor | 0:fcaad0dfa051 | 16 | |
spastor | 0:fcaad0dfa051 | 17 | /** Class constructor */ |
spastor | 0:fcaad0dfa051 | 18 | FH_IoDataSampe64b802::FH_IoDataSampe64b802() : FrameHandler(ApiFrame::Io64Bit), |
spastor | 0:fcaad0dfa051 | 19 | io_data_cb(NULL) |
spastor | 0:fcaad0dfa051 | 20 | { |
spastor | 0:fcaad0dfa051 | 21 | } |
spastor | 0:fcaad0dfa051 | 22 | |
spastor | 0:fcaad0dfa051 | 23 | /** Class destructor */ |
spastor | 0:fcaad0dfa051 | 24 | FH_IoDataSampe64b802::~FH_IoDataSampe64b802() |
spastor | 0:fcaad0dfa051 | 25 | { |
spastor | 4:629712865107 | 26 | |
spastor | 0:fcaad0dfa051 | 27 | } |
spastor | 0:fcaad0dfa051 | 28 | |
spastor | 0:fcaad0dfa051 | 29 | void FH_IoDataSampe64b802::register_io_data_cb(io_data_cb_802_t function) |
spastor | 0:fcaad0dfa051 | 30 | { |
spastor | 4:629712865107 | 31 | io_data_cb = function; |
spastor | 0:fcaad0dfa051 | 32 | } |
spastor | 0:fcaad0dfa051 | 33 | |
spastor | 0:fcaad0dfa051 | 34 | void FH_IoDataSampe64b802::unregister_io_data_cb() |
spastor | 0:fcaad0dfa051 | 35 | { |
spastor | 4:629712865107 | 36 | io_data_cb = NULL; |
spastor | 0:fcaad0dfa051 | 37 | } |
spastor | 0:fcaad0dfa051 | 38 | |
spastor | 0:fcaad0dfa051 | 39 | #define IO_SAMPLE_64_802_DATA_OFFSET 10 |
spastor | 0:fcaad0dfa051 | 40 | |
spastor | 0:fcaad0dfa051 | 41 | void FH_IoDataSampe64b802::process_frame_data(const ApiFrame *const frame) |
spastor | 0:fcaad0dfa051 | 42 | { |
spastor | 0:fcaad0dfa051 | 43 | const uint8_t * const datap = frame->get_data(); |
spastor | 4:629712865107 | 44 | |
spastor | 0:fcaad0dfa051 | 45 | /* The caller checks that the type matches, so no need to check it here again */ |
spastor | 0:fcaad0dfa051 | 46 | if (io_data_cb == NULL) { |
spastor | 0:fcaad0dfa051 | 47 | return; |
spastor | 0:fcaad0dfa051 | 48 | } |
spastor | 0:fcaad0dfa051 | 49 | |
spastor | 0:fcaad0dfa051 | 50 | /* We got an IO packet, decode it... */ |
spastor | 0:fcaad0dfa051 | 51 | const uint64_t sender64 = addr64_from_uint8_t(datap); |
spastor | 0:fcaad0dfa051 | 52 | const RemoteXBee802 sender = RemoteXBee802(sender64); |
spastor | 0:fcaad0dfa051 | 53 | const IOSample802 ioSample = IOSample802(&datap[IO_SAMPLE_64_802_DATA_OFFSET], frame->get_data_len() - IO_SAMPLE_64_802_DATA_OFFSET); |
spastor | 0:fcaad0dfa051 | 54 | |
spastor | 0:fcaad0dfa051 | 55 | io_data_cb(sender, ioSample); |
spastor | 0:fcaad0dfa051 | 56 | } |
spastor | 0:fcaad0dfa051 | 57 | |
spastor | 0:fcaad0dfa051 | 58 | /** Class constructor */ |
spastor | 0:fcaad0dfa051 | 59 | FH_IoDataSampe16b802::FH_IoDataSampe16b802() : FrameHandler(ApiFrame::Io16Bit), |
spastor | 0:fcaad0dfa051 | 60 | io_data_cb(NULL) |
spastor | 0:fcaad0dfa051 | 61 | { |
spastor | 0:fcaad0dfa051 | 62 | } |
spastor | 0:fcaad0dfa051 | 63 | |
spastor | 0:fcaad0dfa051 | 64 | /** Class destructor */ |
spastor | 0:fcaad0dfa051 | 65 | FH_IoDataSampe16b802::~FH_IoDataSampe16b802() |
spastor | 0:fcaad0dfa051 | 66 | { |
spastor | 0:fcaad0dfa051 | 67 | } |
spastor | 0:fcaad0dfa051 | 68 | |
spastor | 0:fcaad0dfa051 | 69 | void FH_IoDataSampe16b802::register_io_data_cb(io_data_cb_802_t function) |
spastor | 0:fcaad0dfa051 | 70 | { |
spastor | 0:fcaad0dfa051 | 71 | io_data_cb = function; |
spastor | 0:fcaad0dfa051 | 72 | } |
spastor | 0:fcaad0dfa051 | 73 | |
spastor | 0:fcaad0dfa051 | 74 | void FH_IoDataSampe16b802::unregister_io_data_cb() |
spastor | 0:fcaad0dfa051 | 75 | { |
spastor | 0:fcaad0dfa051 | 76 | io_data_cb = NULL; |
spastor | 0:fcaad0dfa051 | 77 | } |
spastor | 0:fcaad0dfa051 | 78 | |
spastor | 0:fcaad0dfa051 | 79 | #define IO_SAMPLE_16_802_ADDR16_MSB_OFFSET 0 |
spastor | 0:fcaad0dfa051 | 80 | #define IO_SAMPLE_16_802_ADDR16_LSB_OFFSET 1 |
spastor | 0:fcaad0dfa051 | 81 | #define IO_SAMPLE_16_802_DATA_OFFSET 4 |
spastor | 0:fcaad0dfa051 | 82 | |
spastor | 0:fcaad0dfa051 | 83 | void FH_IoDataSampe16b802::process_frame_data(const ApiFrame *const frame) |
spastor | 0:fcaad0dfa051 | 84 | { |
spastor | 0:fcaad0dfa051 | 85 | const uint8_t * const datap = frame->get_data();; |
spastor | 0:fcaad0dfa051 | 86 | |
spastor | 0:fcaad0dfa051 | 87 | /* The caller checks that the type matches, so no need to check it here again */ |
spastor | 0:fcaad0dfa051 | 88 | if (io_data_cb == NULL) { |
spastor | 0:fcaad0dfa051 | 89 | return; |
spastor | 0:fcaad0dfa051 | 90 | } |
spastor | 0:fcaad0dfa051 | 91 | |
spastor | 0:fcaad0dfa051 | 92 | /* We got an IO packet, decode it... */ |
spastor | 0:fcaad0dfa051 | 93 | const uint16_t sender16 = ADDR16(datap[IO_SAMPLE_16_802_ADDR16_MSB_OFFSET], datap[IO_SAMPLE_16_802_ADDR16_LSB_OFFSET]); |
spastor | 0:fcaad0dfa051 | 94 | const RemoteXBee802 sender = RemoteXBee802(sender16); |
spastor | 0:fcaad0dfa051 | 95 | |
spastor | 0:fcaad0dfa051 | 96 | const IOSample802 ioSample = IOSample802(&datap[IO_SAMPLE_16_802_DATA_OFFSET], frame->get_data_len() - IO_SAMPLE_16_802_DATA_OFFSET); |
spastor | 0:fcaad0dfa051 | 97 | |
spastor | 0:fcaad0dfa051 | 98 | io_data_cb(sender, ioSample); |
spastor | 0:fcaad0dfa051 | 99 | } |