インターフェース2014年10月号のu-blox C027で3G通信する記事で使用したプログラム。   CQ publishing Interface 2014.10 issue, C027 3G test program.

Dependencies:   C027_Support C027_SupportTest mbed picojson

Fork of C027_SupportTest by u-blox

インターフェース2014年10月号のu-blox C027で3G通信する記事で使用したプログラムです。

Revision:
24:81f5b43a6585
Parent:
22:078f410ef2c7
Child:
26:712544e993ff
--- a/main.cpp	Fri Jun 06 15:01:52 2014 +0000
+++ b/main.cpp	Thu Jun 12 12:39:24 2014 +0000
@@ -64,7 +64,7 @@
         {
             memset(buf, 0, sizeof(buf));
             int len = mdm.readFile(filename, buf, sizeof(buf));
-            if (len) 
+            if (len >= 0) 
                 printf("readFile %d \"%.*s\"\r\n", len, len, buf);
             mdm.delFile(filename);
         }