summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdAttention.cpp
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/CmdAttention.cpp
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/CmdAttention.cpp')
-rw-r--r--CommandTerminal/CmdAttention.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/CommandTerminal/CmdAttention.cpp b/CommandTerminal/CmdAttention.cpp
new file mode 100644
index 0000000..892e891
--- /dev/null
+++ b/CommandTerminal/CmdAttention.cpp
@@ -0,0 +1,16 @@
+#include "CmdAttention.h"
+
+CmdAttention::CmdAttention(mDot* dot) : Command(dot, "Attention", "AT", "Attention")
+{
+ _help = std::string(text()) + ": " + std::string(desc());
+}
+
+CmdAttention::CmdAttention(mDot* dot, const char* name, const char* text, const char* desc) : Command(dot, name, text, desc)
+{
+
+}
+
+uint32_t CmdAttention::action(std::vector<std::string> args) {
+ return 0;
+}
+