mDot AT-Firmware for testing
Dependencies: MTS-Serial libmDot-mbed5
Fork of Dot-AT-Firmware by
CommandTerminal/CmdDeviceClass.h@16:3b1d46c1db11, 2017-08-14 (annotated)
- Committer:
- Fran6
- Date:
- Mon Aug 14 12:40:21 2017 +0000
- Revision:
- 16:3b1d46c1db11
- Parent:
- 14:f9a77400b622
mDot AT-Firmware
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Mike Fiore |
9:ff62b20f7000 | 1 | /* |
Mike Fiore |
9:ff62b20f7000 | 2 | * CmdDeviceClass.h |
Mike Fiore |
9:ff62b20f7000 | 3 | * |
Mike Fiore |
9:ff62b20f7000 | 4 | * Created on: Nov 9, 2015 |
Mike Fiore |
9:ff62b20f7000 | 5 | * Author: jreiss |
Mike Fiore |
9:ff62b20f7000 | 6 | */ |
Mike Fiore |
9:ff62b20f7000 | 7 | |
Mike Fiore |
9:ff62b20f7000 | 8 | #ifndef CMDDEVICECLASS_H_ |
Mike Fiore |
9:ff62b20f7000 | 9 | #define CMDDEVICECLASS_H_ |
Mike Fiore |
9:ff62b20f7000 | 10 | |
Mike Fiore |
9:ff62b20f7000 | 11 | #include "Command.h" |
Mike Fiore |
9:ff62b20f7000 | 12 | |
Mike Fiore |
9:ff62b20f7000 | 13 | class CmdDeviceClass: public Command { |
Mike Fiore |
9:ff62b20f7000 | 14 | public: |
Mike Fiore |
14:f9a77400b622 | 15 | CmdDeviceClass(); |
Mike Fiore |
9:ff62b20f7000 | 16 | virtual ~CmdDeviceClass(); |
Mike Fiore |
14:f9a77400b622 | 17 | static uint32_t action(std::vector<std::string> args); |
Mike Fiore |
14:f9a77400b622 | 18 | static bool verify(std::vector<std::string> args); |
Mike Fiore |
9:ff62b20f7000 | 19 | |
Mike Fiore |
9:ff62b20f7000 | 20 | private: |
Mike Fiore |
14:f9a77400b622 | 21 | |
Mike Fiore |
9:ff62b20f7000 | 22 | |
Mike Fiore |
9:ff62b20f7000 | 23 | }; |
Mike Fiore |
9:ff62b20f7000 | 24 | |
Mike Fiore |
9:ff62b20f7000 | 25 | #endif /* CMDDEVICECLASS_H_ */ |