Xbee s2b for lpc11u24

Dependencies:   DigiLogger

Dependents:  

Fork of XBeeLib by Digi International Inc.

Committer:
renanbmx123
Date:
Mon Jul 16 23:38:42 2018 +0000
Revision:
10:2c0de6919c2d
Parent:
4:629712865107
DigiLogger is delete after updating library and you need to import it again to get thinks work.

Who changed what in which revision?

UserRevisionLine numberNew 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 #if !defined(__FH_IO_DATA_SAMPLE_802_H_)
spastor 0:fcaad0dfa051 14 #define __FH_IO_DATA_SAMPLE_802_H_
spastor 0:fcaad0dfa051 15
spastor 0:fcaad0dfa051 16 #include "FrameHandler.h"
spastor 0:fcaad0dfa051 17 #include "RemoteXBee/RemoteXBee.h"
spastor 0:fcaad0dfa051 18
spastor 0:fcaad0dfa051 19 namespace XBeeLib {
spastor 0:fcaad0dfa051 20
spastor 0:fcaad0dfa051 21 class IOSample802;
spastor 0:fcaad0dfa051 22
spastor 0:fcaad0dfa051 23 /**
spastor 0:fcaad0dfa051 24 * @defgroup callback_types "Callback types declaration"
spastor 0:fcaad0dfa051 25 * @{
spastor 0:fcaad0dfa051 26 */
spastor 0:fcaad0dfa051 27 /** IO Data Sample reception (802.15.4 modules) callback type declaration
spastor 0:fcaad0dfa051 28 * @param remote the remote module that sent the data
spastor 0:fcaad0dfa051 29 * @param sample_data a referece to an @ref IOSample802 that can be queried for the IoLines' values
spastor 0:fcaad0dfa051 30 */
spastor 0:fcaad0dfa051 31 typedef void (*io_data_cb_802_t)(const RemoteXBee802& remote, const IOSample802& sample_data);
spastor 0:fcaad0dfa051 32 /**
spastor 0:fcaad0dfa051 33 * @}
spastor 0:fcaad0dfa051 34 */
spastor 0:fcaad0dfa051 35
spastor 0:fcaad0dfa051 36
spastor 0:fcaad0dfa051 37 class FH_IoDataSampe64b802 : public FrameHandler
spastor 0:fcaad0dfa051 38 {
spastor 0:fcaad0dfa051 39 public:
spastor 0:fcaad0dfa051 40 /** Class constructor */
spastor 0:fcaad0dfa051 41 FH_IoDataSampe64b802();
spastor 0:fcaad0dfa051 42
spastor 0:fcaad0dfa051 43 /** Class destructor */
spastor 0:fcaad0dfa051 44 virtual ~FH_IoDataSampe64b802();
spastor 0:fcaad0dfa051 45
spastor 0:fcaad0dfa051 46 virtual void process_frame_data(const ApiFrame *const frame);
spastor 0:fcaad0dfa051 47
spastor 0:fcaad0dfa051 48 void register_io_data_cb(io_data_cb_802_t function);
spastor 0:fcaad0dfa051 49 void unregister_io_data_cb();
spastor 0:fcaad0dfa051 50
spastor 0:fcaad0dfa051 51 private:
spastor 0:fcaad0dfa051 52 /** Callback function, invoked if registered */
spastor 0:fcaad0dfa051 53 io_data_cb_802_t io_data_cb;
spastor 0:fcaad0dfa051 54
spastor 0:fcaad0dfa051 55 };
spastor 0:fcaad0dfa051 56
spastor 0:fcaad0dfa051 57 class FH_IoDataSampe16b802 : public FrameHandler
spastor 0:fcaad0dfa051 58 {
spastor 0:fcaad0dfa051 59 public:
spastor 0:fcaad0dfa051 60 /** Class constructor */
spastor 0:fcaad0dfa051 61 FH_IoDataSampe16b802();
spastor 0:fcaad0dfa051 62
spastor 0:fcaad0dfa051 63 /** Class destructor */
spastor 0:fcaad0dfa051 64 virtual ~FH_IoDataSampe16b802();
spastor 0:fcaad0dfa051 65
spastor 0:fcaad0dfa051 66 virtual void process_frame_data(const ApiFrame *const frame);
spastor 0:fcaad0dfa051 67
spastor 0:fcaad0dfa051 68 void register_io_data_cb(io_data_cb_802_t function);
spastor 4:629712865107 69
spastor 0:fcaad0dfa051 70 void unregister_io_data_cb();
spastor 4:629712865107 71
spastor 0:fcaad0dfa051 72 private:
spastor 0:fcaad0dfa051 73 /** Callback function, invoked if registered */
spastor 0:fcaad0dfa051 74 io_data_cb_802_t io_data_cb;
spastor 0:fcaad0dfa051 75 };
spastor 0:fcaad0dfa051 76
spastor 0:fcaad0dfa051 77 } /* namespace XBeeLib */
spastor 0:fcaad0dfa051 78
spastor 0:fcaad0dfa051 79 #endif /* __FH_IO_DATA_SAMPLE_802_H_ */