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/CmdDisableDutyCycle.cpp	Fri Nov 04 14:25:43 2016 -0500
@@ -0,0 +1,38 @@
+#include "CmdDisableDutyCycle.h"
+
+CmdDisableDutyCycle::CmdDisableDutyCycle()
+: Command("Disable Duty Cycle", "AT+DD", "Disable duty cycle for TESTING PURPOSES ONLY!!! This setting will not be saved to config.", "(0-1)") {
+    _queryable = true;
+}
+
+uint32_t CmdDisableDutyCycle::action(std::vector<std::string> args) {
+
+    if (args.size() == 1) {
+        CommandTerminal::Serial()->writef("%lu\r\n", CommandTerminal::Dot()->getDisableDutyCycle());
+    } else if (args.size() == 2) {
+        CommandTerminal::Dot()->setDisableDutyCycle(args[1] == "1");
+    }
+
+    return 0;
+}
+
+bool CmdDisableDutyCycle::verify(std::vector<std::string> args) {
+
+    if (args.size() > 2) {
+        CommandTerminal::setErrorMessage("Invalid parameter, expects (0-1)");
+        return false;
+    }
+
+    if (args.size() == 2) {
+        int bytes;
+
+        sscanf(args[1].c_str(), "%d", &bytes);
+
+        if (!(bytes == 0 || bytes == 1)) {
+            CommandTerminal::setErrorMessage("Invalid parameter, expects (0-1)");
+            return false;
+        }
+    }
+
+    return true;
+}