From dd557b5a21d64cd49b1179ac891ffb2c63dee6d8 Mon Sep 17 00:00:00 2001 From: Leon Lindenfelser Date: Fri, 13 Nov 2015 08:14:28 -0600 Subject: Added CommandTerminal with unneccessary commands removed --- CommandTerminal/CmdIdentification.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 CommandTerminal/CmdIdentification.h (limited to 'CommandTerminal/CmdIdentification.h') diff --git a/CommandTerminal/CmdIdentification.h b/CommandTerminal/CmdIdentification.h new file mode 100644 index 0000000..b553ba1 --- /dev/null +++ b/CommandTerminal/CmdIdentification.h @@ -0,0 +1,17 @@ +#ifndef __CMDIDENTIFICATION_H__ +#define __CMDIDENTIFICATION_H__ + +#include "Command.h" + +class CmdIdentification : public Command { + +public: + + CmdIdentification(mDot* dot, mts::MTSSerial& serial); + virtual uint32_t action(std::vector args); + +private: + mts::MTSSerial& _serial; +}; + +#endif // __CMDIDENTIFICATION_H__ -- cgit v1.2.3