mDot AT-Firmware for testing
Dependencies: MTS-Serial libmDot-mbed5
Fork of Dot-AT-Firmware by
CommandTerminal/CmdTxChannel.h@9:ff62b20f7000, 2016-04-04 (annotated)
- Committer:
- Mike Fiore
- Date:
- Mon Apr 04 09:00:31 2016 -0500
- Revision:
- 9:ff62b20f7000
- Parent:
- 1:e52ae6584f1c
- Child:
- 14:f9a77400b622
update to version 1.0.8 of AT firmware
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Mike Fiore |
1:e52ae6584f1c | 1 | #ifndef __CMDTXCHANNEL_H__ |
Mike Fiore |
1:e52ae6584f1c | 2 | #define __CMDTXCHANNEL_H__ |
Mike Fiore |
1:e52ae6584f1c | 3 | |
Mike Fiore |
1:e52ae6584f1c | 4 | #include "Command.h" |
Mike Fiore |
1:e52ae6584f1c | 5 | |
Mike Fiore |
1:e52ae6584f1c | 6 | class CommandTerminal; |
Mike Fiore |
1:e52ae6584f1c | 7 | |
Mike Fiore |
1:e52ae6584f1c | 8 | class CmdTxChannel : public Command { |
Mike Fiore |
1:e52ae6584f1c | 9 | |
Mike Fiore |
1:e52ae6584f1c | 10 | public: |
Mike Fiore |
1:e52ae6584f1c | 11 | |
Mike Fiore |
1:e52ae6584f1c | 12 | CmdTxChannel(mDot* dot, mts::MTSSerial& serial); |
Mike Fiore |
1:e52ae6584f1c | 13 | virtual uint32_t action(std::vector<std::string> args); |
Mike Fiore |
9:ff62b20f7000 | 14 | virtual bool verify(std::vector<std::string> args); |
Mike Fiore |
1:e52ae6584f1c | 15 | |
Mike Fiore |
1:e52ae6584f1c | 16 | private: |
Mike Fiore |
1:e52ae6584f1c | 17 | mts::MTSSerial& _serial; |
Mike Fiore |
1:e52ae6584f1c | 18 | }; |
Mike Fiore |
1:e52ae6584f1c | 19 | |
Mike Fiore |
1:e52ae6584f1c | 20 | #endif // __CMDTXCHANNEL_H__ |