uitgy

Dependents:   App_Pese_Ruche_SYSBEE

Fork of C027_Support by u-blox

Revision:
140:8ad0ff04c73c
Parent:
137:6a7a5c4f35f6
--- a/MDM.cpp	Mon Jan 25 13:30:55 2016 +0000
+++ b/MDM.cpp	Wed Apr 11 08:43:42 2018 +0000
@@ -710,6 +710,7 @@
     ok = REG_DONE(_net.csd) && 
         (REG_DONE(_net.psd) || REG_DONE(_net.eps));
     UNLOCK();
+    INFO(".");
     return ok;
 failure:
     unlock();
@@ -2041,7 +2042,7 @@
 #ifdef MDM_DEBUG
     _debugLevel = (level < -1) ? -1 : 
                   (level >  3) ?  3 : 
-                                 level;
+                                   level;
 #endif
     return _debugLevel == level;
 }
@@ -2049,7 +2050,7 @@
 void MDMParser::dumpDevStatus(MDMParser::DevStatus* status, 
             _DPRINT dprint, void* param) 
 {
-    dprint(param, "Modem::devStatus\r\n");
+    dprint(param, "\r\nModem::devStatus\r\n");
     const char* txtDev[] = { "Unknown",  "SARA-G35", "LISA-U2", "LISA-U2-03S", "LISA-C2", 
                              "SARA-U2",  "LEON-G2",  "TOBY-L2", "MPCI-L2" };
     if (status->dev < sizeof(txtDev)/sizeof(*txtDev) && (status->dev != DEV_UNKNOWN))