summaryrefslogtreecommitdiff
path: root/CommandTerminal/CommandTerminal.cpp
diff options
context:
space:
mode:
authorLeon Lindenfelser <llindenfelser@multitech.com>2015-11-16 16:18:09 -0600
committerLeon Lindenfelser <llindenfelser@multitech.com>2015-11-16 16:18:09 -0600
commitf484beed77531d7ef2da65cf049fe9c4ac6b7d08 (patch)
tree4b7c15b9ec44819e1e1488b020f164143241d88e /CommandTerminal/CommandTerminal.cpp
parente6bfab044122be837c2235a6bf634b369c753e9c (diff)
downloadmtdot-box-evb-factory-firmware-f484beed77531d7ef2da65cf049fe9c4ac6b7d08.tar.gz
mtdot-box-evb-factory-firmware-f484beed77531d7ef2da65cf049fe9c4ac6b7d08.tar.bz2
mtdot-box-evb-factory-firmware-f484beed77531d7ef2da65cf049fe9c4ac6b7d08.zip
Added all the new dotbox commands with some detail work still needed
Diffstat (limited to 'CommandTerminal/CommandTerminal.cpp')
-rw-r--r--CommandTerminal/CommandTerminal.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/CommandTerminal/CommandTerminal.cpp b/CommandTerminal/CommandTerminal.cpp
index 265009e..28c047f 100644
--- a/CommandTerminal/CommandTerminal.cpp
+++ b/CommandTerminal/CommandTerminal.cpp
@@ -57,6 +57,16 @@ CommandTerminal::CommandTerminal(mts::MTSSerial& serial, mDot* dot)
addCommand(new CmdNetworkJoinMode(_dot, serial));
addCommand(new CmdTxDataRate(_dot, serial));
addCommand(new CmdTxPower(_dot, serial));
+
+ addCommand(new CmdMinimumSize(_dot, serial));
+ addCommand(new CmdMaximumSize(_dot, serial));
+ addCommand(new CmdMinimumPower(_dot, serial));
+ addCommand(new CmdMaximumPower(_dot, serial));
+ addCommand(new CmdData(_dot, serial));
+ addCommand(new CmdGetSurveyDataFile(_dot, serial));
+ addCommand(new CmdDeleteSurveyDataFile(_dot, serial));
+ addCommand(new CmdExit(_dot, serial));
+
}
void CommandTerminal::printHelp() {