project de marde si tu touch le no-homo s'applique pas
Fork of XBeeLib by
FrameHandlers/FH_ModemStatus.h@3:8662ebe83570, 2015-05-18 (annotated)
- Committer:
- spastor
- Date:
- Mon May 18 13:16:55 2015 +0200
- Revision:
- 3:8662ebe83570
- Parent:
- 0:fcaad0dfa051
- Child:
- 4:629712865107
Automatic upload
Who changed what in which revision?
User | Revision | Line number | New 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_MODEM_STATUS_H_) |
spastor | 0:fcaad0dfa051 | 14 | #define __FH_MODEM_STATUS_H_ |
spastor | 0:fcaad0dfa051 | 15 | |
spastor | 0:fcaad0dfa051 | 16 | #include "Frames/AtCmdFrame.h" |
spastor | 0:fcaad0dfa051 | 17 | #include "FrameHandler.h" |
spastor | 0:fcaad0dfa051 | 18 | |
spastor | 0:fcaad0dfa051 | 19 | typedef void (*modem_status_cb_t)(AtCmdFrame::ModemStatus status); |
spastor | 0:fcaad0dfa051 | 20 | |
spastor | 0:fcaad0dfa051 | 21 | class FH_ModemStatus : public FrameHandler |
spastor | 0:fcaad0dfa051 | 22 | { |
spastor | 0:fcaad0dfa051 | 23 | private: |
spastor | 0:fcaad0dfa051 | 24 | /** Callback function, invoked (if registered) when a modem status packet is received */ |
spastor | 0:fcaad0dfa051 | 25 | modem_status_cb_t modem_status_cb; |
spastor | 0:fcaad0dfa051 | 26 | |
spastor | 0:fcaad0dfa051 | 27 | public: |
spastor | 0:fcaad0dfa051 | 28 | /** Class constructor */ |
spastor | 0:fcaad0dfa051 | 29 | FH_ModemStatus(); |
spastor | 0:fcaad0dfa051 | 30 | |
spastor | 0:fcaad0dfa051 | 31 | /** Class destructor */ |
spastor | 0:fcaad0dfa051 | 32 | virtual ~FH_ModemStatus(); |
spastor | 0:fcaad0dfa051 | 33 | |
spastor | 0:fcaad0dfa051 | 34 | /** Method called by the stack to process the modem status frame data |
spastor | 0:fcaad0dfa051 | 35 | |
spastor | 0:fcaad0dfa051 | 36 | \param frame pointer pointing to api frame that must be processed */ |
spastor | 0:fcaad0dfa051 | 37 | virtual void process_frame_data(const ApiFrame *const frame); |
spastor | 0:fcaad0dfa051 | 38 | |
spastor | 0:fcaad0dfa051 | 39 | /** */ |
spastor | 0:fcaad0dfa051 | 40 | virtual void register_modem_status_cb(modem_status_cb_t function); |
spastor | 0:fcaad0dfa051 | 41 | |
spastor | 0:fcaad0dfa051 | 42 | /** */ |
spastor | 0:fcaad0dfa051 | 43 | virtual void unregister_modem_status_cb(void); |
spastor | 0:fcaad0dfa051 | 44 | }; |
spastor | 0:fcaad0dfa051 | 45 | |
spastor | 0:fcaad0dfa051 | 46 | #endif /* __FH_MODEM_STATUS_H_ */ |