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 #if !defined(__FH_MODEM_STATUS_H_)
vpcola 0:a1734fe1ec4b 14 #define __FH_MODEM_STATUS_H_
vpcola 0:a1734fe1ec4b 15
vpcola 0:a1734fe1ec4b 16 #include "Frames/AtCmdFrame.h"
vpcola 0:a1734fe1ec4b 17 #include "FrameHandler.h"
vpcola 0:a1734fe1ec4b 18
vpcola 0:a1734fe1ec4b 19 typedef void (*modem_status_cb_t)(AtCmdFrame::ModemStatus status);
vpcola 0:a1734fe1ec4b 20
vpcola 0:a1734fe1ec4b 21 class FH_ModemStatus : public FrameHandler
vpcola 0:a1734fe1ec4b 22 {
vpcola 0:a1734fe1ec4b 23 private:
vpcola 0:a1734fe1ec4b 24 /** Callback function, invoked (if registered) when a modem status packet is received */
vpcola 0:a1734fe1ec4b 25 modem_status_cb_t modem_status_cb;
vpcola 0:a1734fe1ec4b 26
vpcola 0:a1734fe1ec4b 27 public:
vpcola 0:a1734fe1ec4b 28 /** Class constructor */
vpcola 0:a1734fe1ec4b 29 FH_ModemStatus();
vpcola 0:a1734fe1ec4b 30
vpcola 0:a1734fe1ec4b 31 /** Class destructor */
vpcola 0:a1734fe1ec4b 32 virtual ~FH_ModemStatus();
vpcola 0:a1734fe1ec4b 33
vpcola 0:a1734fe1ec4b 34 /** Method called by the stack to process the modem status frame data
vpcola 0:a1734fe1ec4b 35
vpcola 0:a1734fe1ec4b 36 \param frame pointer pointing to api frame that must be processed */
vpcola 0:a1734fe1ec4b 37 virtual void process_frame_data(const ApiFrame *const frame);
vpcola 0:a1734fe1ec4b 38
vpcola 0:a1734fe1ec4b 39 virtual void register_modem_status_cb(modem_status_cb_t function);
vpcola 0:a1734fe1ec4b 40
vpcola 0:a1734fe1ec4b 41 virtual void unregister_modem_status_cb(void);
vpcola 0:a1734fe1ec4b 42 };
vpcola 0:a1734fe1ec4b 43
vpcola 0:a1734fe1ec4b 44 #endif /* __FH_MODEM_STATUS_H_ */