This mDot firmware will allow USB to directly utilize AT command without the need the use of RS232 DB9 port.
Dependencies: MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_USB_AT_firmware by
CommandTerminal/CmdWakePin.h
- Committer:
- Mike Fiore
- Date:
- 2015-08-18
- Revision:
- 4:666017851052
File content as of revision 4:666017851052:
#ifndef __CMDWAKEPIN_H__ #define __CMDWAKEPIN_H__ #include "Command.h" class CommandTerminal; class CmdWakePin : public Command { public: CmdWakePin(mDot* dot, mts::MTSSerial& serial); virtual uint32_t action(std::vector<std::string> args); virtual bool verify(std::vector<std::string> args); private: mts::MTSSerial& _serial; }; #endif // __CMDWAKEPIN_H__