firm newest
Dependencies: MTS-Serial libmDot-dev-mbed5-deprecated
Diff: CommandTerminal/CmdDummy.h
- Revision:
- 0:3c869a8cb8f8
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CommandTerminal/CmdDummy.h Thu Oct 18 04:18:48 2018 +0000 @@ -0,0 +1,17 @@ +#ifndef __CMDDUMMY_H__ +#define __CMDDUMMY_H__ + +#include "Command.h" + +class CmdDummy : public Command { + +public: + + CmdDummy(const char* name, const char* text, const char* desc, const char* usage); + static uint32_t action(std::vector<std::string> args); + static bool verify(std::vector<std::string> args); + +private: +}; + +#endif // __CMDDUMMY_H__