with 36errors

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

Fork of Dot-AT-Firmware by MultiTech

Revision:
9:ff62b20f7000
Parent:
1:e52ae6584f1c
Child:
14:f9a77400b622
--- a/CommandTerminal/CmdErrorCorrection.cpp	Mon Apr 04 13:17:44 2016 +0000
+++ b/CommandTerminal/CmdErrorCorrection.cpp	Mon Apr 04 09:00:31 2016 -0500
@@ -25,8 +25,8 @@
 
         if ((code = _dot->setFec(bytes)) != mDot::MDOT_OK)
         {
-            std::string error = mDot::getReturnCodeString(code) + " - " + _dot->getLastError();
-            setErrorMessage(error);
+            
+            setErrorMessage(_dot->getLastError());;
             return 1;
         }
     }
@@ -41,8 +41,8 @@
 
     if (args.size() == 2)
     {
-        uint32_t retries;
-        if (sscanf(args[1].c_str(), "%u", &retries) != 1) {
+        int retries;
+        if (sscanf(args[1].c_str(), "%d", &retries) != 1) {
             setErrorMessage("Invalid argument");
             return false;
         }