IGOR / Mbed 2 deprecated PONY_Ph0-uAXIS

Dependencies:   C027 C027_Support M2XStreamClient PowerControl jsonlite mbed-rtos mbed

Fork of PONY_Ph0-uAXIS by Sean McBeath

Files at this revision

API Documentation at this revision

Comitter:
mazgch
Date:
Thu Jun 12 12:39:24 2014 +0000
Parent:
23:a41d67d7749b
Child:
25:c1ee28eea1e4
Commit message:
check for >0 when reading

Changed in this revision

C027_Support.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- a/C027_Support.lib	Fri Jun 06 15:01:52 2014 +0000
+++ b/C027_Support.lib	Thu Jun 12 12:39:24 2014 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/teams/ublox/code/C027_Support/#3915192f6d7e
+http://mbed.org/teams/ublox/code/C027_Support/#2b5478693c20
--- 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);
         }
--- a/mbed.bld	Fri Jun 06 15:01:52 2014 +0000
+++ b/mbed.bld	Thu Jun 12 12:39:24 2014 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/0b3ab51c8877
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/024bf7f99721
\ No newline at end of file