Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C027 C027_Support M2XStreamClient PowerControl jsonlite mbed-rtos mbed
Fork of PONY_Ph0-uAXIS by
Revision 24:81f5b43a6585, committed 2014-06-12
- 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
--- 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
