summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdIdentification.h
diff options
context:
space:
mode:
authorLeon Lindenfelser <llindenfelser@multitech.com>2015-11-13 08:14:28 -0600
committerLeon Lindenfelser <llindenfelser@multitech.com>2015-11-13 08:14:28 -0600
commitdd557b5a21d64cd49b1179ac891ffb2c63dee6d8 (patch)
treecc31de4ee73352c4248104582c55607f11af0b0c /CommandTerminal/CmdIdentification.h
parentf0f9fc2601dc3421aa3f4d9747748c3bee93f703 (diff)
downloadmtdot-box-evb-factory-firmware-dd557b5a21d64cd49b1179ac891ffb2c63dee6d8.tar.gz
mtdot-box-evb-factory-firmware-dd557b5a21d64cd49b1179ac891ffb2c63dee6d8.tar.bz2
mtdot-box-evb-factory-firmware-dd557b5a21d64cd49b1179ac891ffb2c63dee6d8.zip
Added CommandTerminal with unneccessary commands removed
Diffstat (limited to 'CommandTerminal/CmdIdentification.h')
-rw-r--r--CommandTerminal/CmdIdentification.h17
1 files changed, 17 insertions, 0 deletions
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<std::string> args);
+
+private:
+ mts::MTSSerial& _serial;
+};
+
+#endif // __CMDIDENTIFICATION_H__