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.
Dependents: example-ublox-at-cellular-interface-ext example-low-power-sleep example-C030-out-of-box-demo example-C030-out-of-box-demo ... more
Revision 34:d6a65d4c902a, committed 2019-07-29
- Comitter:
- wajahat.abbas@u-blox.com
- Date:
- Mon Jul 29 14:24:22 2019 +0500
- Parent:
- 33:75163fa7e453
- Commit message:
- Fixed build error on generic applications
Changed in this revision
| gnss.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/gnss.cpp Wed May 29 16:45:00 2019 +0500
+++ b/gnss.cpp Mon Jul 29 14:24:22 2019 +0500
@@ -679,8 +679,9 @@
int GnssSerial::_send(const void* buf, int len)
{
+#ifdef UBLOX_WEARABLE_FRAMEWORK
GET_SDCARD_INSTANCE->write(logging_file_name, (void *)buf, len);
-
+#endif
return put((const char*)buf, len, true/*=blocking*/);
}