Fork of my MQTTGateway

Dependencies:   mbed-http

Committer:
vpcola
Date:
Sat Apr 08 14:45:51 2017 +0000
Revision:
0:f1d3878b8dd9
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew 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_IoDataSampeDM::FH_IoDataSampeDM() : 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_IoDataSampeDM::~FH_IoDataSampeDM()
vpcola 0:f1d3878b8dd9 25 {
vpcola 0:f1d3878b8dd9 26 }
vpcola 0:f1d3878b8dd9 27
vpcola 0:f1d3878b8dd9 28 void FH_IoDataSampeDM::register_io_data_cb(io_data_cb_dm_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_IoDataSampeDM::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 /* DM RX packet offsets */
vpcola 0:f1d3878b8dd9 39 #define DM_IO_SAMPLE_DATA_OFFSET 11
vpcola 0:f1d3878b8dd9 40
vpcola 0:f1d3878b8dd9 41 void FH_IoDataSampeDM::process_frame_data(const ApiFrame *const frame)
vpcola 0:f1d3878b8dd9 42 {
vpcola 0:f1d3878b8dd9 43 const uint8_t * const datap = frame->get_data();;
vpcola 0:f1d3878b8dd9 44
vpcola 0:f1d3878b8dd9 45 /* The caller checks that the type matches, so no need to check it here again */
vpcola 0:f1d3878b8dd9 46 if (io_data_cb == NULL) {
vpcola 0:f1d3878b8dd9 47 return;
vpcola 0:f1d3878b8dd9 48 }
vpcola 0:f1d3878b8dd9 49
vpcola 0:f1d3878b8dd9 50 /* We got an IO packet, decode it... */
vpcola 0:f1d3878b8dd9 51 const uint64_t sender64 = addr64_from_uint8_t(datap);
vpcola 0:f1d3878b8dd9 52 const RemoteXBeeDM sender = RemoteXBeeDM(sender64);
vpcola 0:f1d3878b8dd9 53 const IOSampleDM ioSample = IOSampleDM(&datap[DM_IO_SAMPLE_DATA_OFFSET], frame->get_data_len() - DM_IO_SAMPLE_DATA_OFFSET);
vpcola 0:f1d3878b8dd9 54
vpcola 0:f1d3878b8dd9 55 io_data_cb(sender, ioSample);
vpcola 0:f1d3878b8dd9 56 }