This mDot firmware will allow USB to directly utilize AT command without the need the use of RS232 DB9 port.

Dependencies:   MTS-Serial libmDot mbed-rtos mbed

Fork of mDot_USB_AT_firmware by Hadi Ho

Revision:
9:ff62b20f7000
Parent:
4:666017851052
diff -r a8be708e0e56 -r ff62b20f7000 CommandTerminal/CmdJoinByteOrder.cpp
--- a/CommandTerminal/CmdJoinByteOrder.cpp	Mon Apr 04 13:17:44 2016 +0000
+++ b/CommandTerminal/CmdJoinByteOrder.cpp	Mon Apr 04 09:00:31 2016 -0500
@@ -27,8 +27,8 @@
 
         if ((code = _dot->setJoinByteOrder(order)) != mDot::MDOT_OK)
         {
-            std::string error = mDot::getReturnCodeString(code) + " - " + _dot->getLastError();
-            setErrorMessage(error);
+            
+            setErrorMessage(_dot->getLastError());;
             return 1;
         }
     }