Support for LISA-N101

Fork of C027_Support by u-blox

This is a variant of the C027 driver code for the C027N version, i.e. the one with the Neul/Huawei/u-blox Cellular Internet of Things module on board. The AT command interface for this module is entirely different to the AT interface for the other u-blox modules, hence this fork of the driver. Work is underway to rearchitect the original C027 driver so that a merge can be done.

Revision:
108:254bf037f83f
Parent:
106:18aeacdae391
Child:
109:327d209a8ab9
--- a/MDM.cpp	Tue Aug 12 08:43:15 2014 +0000
+++ b/MDM.cpp	Mon Sep 15 11:51:49 2014 +0000
@@ -882,9 +882,9 @@
 int MDMParser::_cbUSOCR(int type, const char* buf, int len, int* handle)
 {
     if ((type == TYPE_PLUS) && handle) {
-        const char* p = strstr(buf,"+USOCR: "); 
-        if (p)
-            *handle = atoi(p+8);
+        // +USOCR: socket
+        if (sscanf(buf, "\r\n+USOCR: %d", handle) == 1)
+            /*nothing*/;  
     }
     return WAIT;
 }