with 36errors

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

Fork of Dot-AT-Firmware by MultiTech

Revision:
14:f9a77400b622
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CommandTerminal/CmdWriteProtectedConfig.cpp	Fri Nov 04 14:25:43 2016 -0500
@@ -0,0 +1,16 @@
+#include "CmdWriteProtectedConfig.h"
+
+CmdWriteProtectedConfig::CmdWriteProtectedConfig() :
+    Command("Write Protected Config", "AT&WP", "Write protected config to flash (DeviceId and Frequency Band)", "NONE")
+{
+}
+
+uint32_t CmdWriteProtectedConfig::action(std::vector<std::string> args)
+{
+    if (!CommandTerminal::Dot()->saveProtectedConfig()) {
+      CommandTerminal::setErrorMessage("Failed to save to flash");
+      return 1;
+    }
+
+    return 0;
+}