Fork of my original MQTTGateway

Dependencies:   mbed-http

Committer:
vpcola
Date:
Sat Apr 08 14:43:14 2017 +0000
Revision:
0:a1734fe1ec4b
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vpcola 0:a1734fe1ec4b 1 /**
vpcola 0:a1734fe1ec4b 2 * Copyright (c) 2015 Digi International Inc.,
vpcola 0:a1734fe1ec4b 3 * All rights not expressly granted are reserved.
vpcola 0:a1734fe1ec4b 4 *
vpcola 0:a1734fe1ec4b 5 * This Source Code Form is subject to the terms of the Mozilla Public
vpcola 0:a1734fe1ec4b 6 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
vpcola 0:a1734fe1ec4b 7 * You can obtain one at http://mozilla.org/MPL/2.0/.
vpcola 0:a1734fe1ec4b 8 *
vpcola 0:a1734fe1ec4b 9 * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343
vpcola 0:a1734fe1ec4b 10 * =======================================================================
vpcola 0:a1734fe1ec4b 11 */
vpcola 0:a1734fe1ec4b 12
vpcola 0:a1734fe1ec4b 13 #include "XBeeLib.h"
vpcola 0:a1734fe1ec4b 14
vpcola 0:a1734fe1ec4b 15 using namespace XBeeLib;
vpcola 0:a1734fe1ec4b 16
vpcola 0:a1734fe1ec4b 17 /** Class constructor */
vpcola 0:a1734fe1ec4b 18 FH_IoDataSampe64b802::FH_IoDataSampe64b802() : FrameHandler(ApiFrame::Io64Bit),
vpcola 0:a1734fe1ec4b 19 io_data_cb(NULL)
vpcola 0:a1734fe1ec4b 20 {
vpcola 0:a1734fe1ec4b 21 }
vpcola 0:a1734fe1ec4b 22
vpcola 0:a1734fe1ec4b 23 /** Class destructor */
vpcola 0:a1734fe1ec4b 24 FH_IoDataSampe64b802::~FH_IoDataSampe64b802()
vpcola 0:a1734fe1ec4b 25 {
vpcola 0:a1734fe1ec4b 26
vpcola 0:a1734fe1ec4b 27 }
vpcola 0:a1734fe1ec4b 28
vpcola 0:a1734fe1ec4b 29 void FH_IoDataSampe64b802::register_io_data_cb(io_data_cb_802_t function)
vpcola 0:a1734fe1ec4b 30 {
vpcola 0:a1734fe1ec4b 31 io_data_cb = function;
vpcola 0:a1734fe1ec4b 32 }
vpcola 0:a1734fe1ec4b 33
vpcola 0:a1734fe1ec4b 34 void FH_IoDataSampe64b802::unregister_io_data_cb()
vpcola 0:a1734fe1ec4b 35 {
vpcola 0:a1734fe1ec4b 36 io_data_cb = NULL;
vpcola 0:a1734fe1ec4b 37 }
vpcola 0:a1734fe1ec4b 38
vpcola 0:a1734fe1ec4b 39 #define IO_SAMPLE_64_802_DATA_OFFSET 10
vpcola 0:a1734fe1ec4b 40
vpcola 0:a1734fe1ec4b 41 void FH_IoDataSampe64b802::process_frame_data(const ApiFrame *const frame)
vpcola 0:a1734fe1ec4b 42 {
vpcola 0:a1734fe1ec4b 43 const uint8_t * const datap = frame->get_data();
vpcola 0:a1734fe1ec4b 44
vpcola 0:a1734fe1ec4b 45 /* The caller checks that the type matches, so no need to check it here again */
vpcola 0:a1734fe1ec4b 46 if (io_data_cb == NULL) {
vpcola 0:a1734fe1ec4b 47 return;
vpcola 0:a1734fe1ec4b 48 }
vpcola 0:a1734fe1ec4b 49
vpcola 0:a1734fe1ec4b 50 /* We got an IO packet, decode it... */
vpcola 0:a1734fe1ec4b 51 const uint64_t sender64 = addr64_from_uint8_t(datap);
vpcola 0:a1734fe1ec4b 52 const RemoteXBee802 sender = RemoteXBee802(sender64);
vpcola 0:a1734fe1ec4b 53 const IOSample802 ioSample = IOSample802(&datap[IO_SAMPLE_64_802_DATA_OFFSET], frame->get_data_len() - IO_SAMPLE_64_802_DATA_OFFSET);
vpcola 0:a1734fe1ec4b 54
vpcola 0:a1734fe1ec4b 55 io_data_cb(sender, ioSample);
vpcola 0:a1734fe1ec4b 56 }
vpcola 0:a1734fe1ec4b 57
vpcola 0:a1734fe1ec4b 58 /** Class constructor */
vpcola 0:a1734fe1ec4b 59 FH_IoDataSampe16b802::FH_IoDataSampe16b802() : FrameHandler(ApiFrame::Io16Bit),
vpcola 0:a1734fe1ec4b 60 io_data_cb(NULL)
vpcola 0:a1734fe1ec4b 61 {
vpcola 0:a1734fe1ec4b 62 }
vpcola 0:a1734fe1ec4b 63
vpcola 0:a1734fe1ec4b 64 /** Class destructor */
vpcola 0:a1734fe1ec4b 65 FH_IoDataSampe16b802::~FH_IoDataSampe16b802()
vpcola 0:a1734fe1ec4b 66 {
vpcola 0:a1734fe1ec4b 67 }
vpcola 0:a1734fe1ec4b 68
vpcola 0:a1734fe1ec4b 69 void FH_IoDataSampe16b802::register_io_data_cb(io_data_cb_802_t function)
vpcola 0:a1734fe1ec4b 70 {
vpcola 0:a1734fe1ec4b 71 io_data_cb = function;
vpcola 0:a1734fe1ec4b 72 }
vpcola 0:a1734fe1ec4b 73
vpcola 0:a1734fe1ec4b 74 void FH_IoDataSampe16b802::unregister_io_data_cb()
vpcola 0:a1734fe1ec4b 75 {
vpcola 0:a1734fe1ec4b 76 io_data_cb = NULL;
vpcola 0:a1734fe1ec4b 77 }
vpcola 0:a1734fe1ec4b 78
vpcola 0:a1734fe1ec4b 79 #define IO_SAMPLE_16_802_ADDR16_MSB_OFFSET 0
vpcola 0:a1734fe1ec4b 80 #define IO_SAMPLE_16_802_ADDR16_LSB_OFFSET 1
vpcola 0:a1734fe1ec4b 81 #define IO_SAMPLE_16_802_DATA_OFFSET 4
vpcola 0:a1734fe1ec4b 82
vpcola 0:a1734fe1ec4b 83 void FH_IoDataSampe16b802::process_frame_data(const ApiFrame *const frame)
vpcola 0:a1734fe1ec4b 84 {
vpcola 0:a1734fe1ec4b 85 const uint8_t * const datap = frame->get_data();;
vpcola 0:a1734fe1ec4b 86
vpcola 0:a1734fe1ec4b 87 /* The caller checks that the type matches, so no need to check it here again */
vpcola 0:a1734fe1ec4b 88 if (io_data_cb == NULL) {
vpcola 0:a1734fe1ec4b 89 return;
vpcola 0:a1734fe1ec4b 90 }
vpcola 0:a1734fe1ec4b 91
vpcola 0:a1734fe1ec4b 92 /* We got an IO packet, decode it... */
vpcola 0:a1734fe1ec4b 93 const uint16_t sender16 = ADDR16(datap[IO_SAMPLE_16_802_ADDR16_MSB_OFFSET], datap[IO_SAMPLE_16_802_ADDR16_LSB_OFFSET]);
vpcola 0:a1734fe1ec4b 94 const RemoteXBee802 sender = RemoteXBee802(sender16);
vpcola 0:a1734fe1ec4b 95
vpcola 0:a1734fe1ec4b 96 const IOSample802 ioSample = IOSample802(&datap[IO_SAMPLE_16_802_DATA_OFFSET], frame->get_data_len() - IO_SAMPLE_16_802_DATA_OFFSET);
vpcola 0:a1734fe1ec4b 97
vpcola 0:a1734fe1ec4b 98 io_data_cb(sender, ioSample);
vpcola 0:a1734fe1ec4b 99 }