firm newest

Dependencies:   MTS-Serial libmDot-dev-mbed5-deprecated

Revision:
0:3c869a8cb8f8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CommandTerminal/CmdSaveSession.cpp	Thu Oct 18 04:18:48 2018 +0000
@@ -0,0 +1,13 @@
+#include "CmdSaveSession.h"
+
+CmdSaveSession::CmdSaveSession() :
+    Command("Save Network Session", "AT+SS", "Save network session info to flash", "NONE")
+{
+}
+
+uint32_t CmdSaveSession::action(std::vector<std::string> args)
+{
+    CommandTerminal::Dot()->saveNetworkSession();
+    return 0;
+}
+