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_IoDataSampeZB::FH_IoDataSampeZB() : FrameHandler(ApiFrame::IoSampleRxZBDM),
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_IoDataSampeZB::~FH_IoDataSampeZB()
vpcola 0:a1734fe1ec4b 25 {
vpcola 0:a1734fe1ec4b 26 }
vpcola 0:a1734fe1ec4b 27
vpcola 0:a1734fe1ec4b 28 void FH_IoDataSampeZB::register_io_data_cb(io_data_cb_zb_t function)
vpcola 0:a1734fe1ec4b 29 {
vpcola 0:a1734fe1ec4b 30 io_data_cb = function;
vpcola 0:a1734fe1ec4b 31 }
vpcola 0:a1734fe1ec4b 32
vpcola 0:a1734fe1ec4b 33 void FH_IoDataSampeZB::unregister_io_data_cb()
vpcola 0:a1734fe1ec4b 34 {
vpcola 0:a1734fe1ec4b 35 io_data_cb = NULL;
vpcola 0:a1734fe1ec4b 36 }
vpcola 0:a1734fe1ec4b 37
vpcola 0:a1734fe1ec4b 38 /* ZB RX packet offsets */
vpcola 0:a1734fe1ec4b 39 #define ZB_IO_SAMPLE_ADDR16_MSB_OFFSET 8
vpcola 0:a1734fe1ec4b 40 #define ZB_IO_SAMPLE_ADDR16_LSB_OFFSET 9
vpcola 0:a1734fe1ec4b 41 #define ZB_IO_SAMPLE_DATA_OFFSET 11
vpcola 0:a1734fe1ec4b 42
vpcola 0:a1734fe1ec4b 43 void FH_IoDataSampeZB::process_frame_data(const ApiFrame *const frame)
vpcola 0:a1734fe1ec4b 44 {
vpcola 0:a1734fe1ec4b 45 const uint8_t * const datap = frame->get_data();;
vpcola 0:a1734fe1ec4b 46
vpcola 0:a1734fe1ec4b 47 /* The caller checks that the type matches, so no need to check it here again */
vpcola 0:a1734fe1ec4b 48 if (io_data_cb == NULL) {
vpcola 0:a1734fe1ec4b 49 return;
vpcola 0:a1734fe1ec4b 50 }
vpcola 0:a1734fe1ec4b 51
vpcola 0:a1734fe1ec4b 52 /* We got an IO packet, decode it... */
vpcola 0:a1734fe1ec4b 53 const uint64_t sender64 = addr64_from_uint8_t(datap);
vpcola 0:a1734fe1ec4b 54 const uint16_t sender16 = ADDR16(datap[ZB_IO_SAMPLE_ADDR16_MSB_OFFSET], datap[ZB_IO_SAMPLE_ADDR16_LSB_OFFSET]);
vpcola 0:a1734fe1ec4b 55 const RemoteXBeeZB sender = RemoteXBeeZB(sender64, sender16);
vpcola 0:a1734fe1ec4b 56 const IOSampleZB ioSample = IOSampleZB(&datap[ZB_IO_SAMPLE_DATA_OFFSET], frame->get_data_len() - ZB_IO_SAMPLE_DATA_OFFSET);
vpcola 0:a1734fe1ec4b 57
vpcola 0:a1734fe1ec4b 58 io_data_cb(sender, ioSample);
vpcola 0:a1734fe1ec4b 59 }