This class provides an API to communicate with a u-blox GNSS chip. The files here were originally part of the C027_Support library (https://developer.mbed.org/teams/ublox/code/C027_Support/ at revision 138:dafbbf31bf76) but have been separated out, primarily for use on the u-blox C030 board where the cellular interace portion of the C027_Support library will instead be provided through the new mbed Cellular API.
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 |
diff -r 75163fa7e453 -r d6a65d4c902a gnss.cpp --- 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*/); }