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.
Fork of MBed_Adafruit-GPS-Library by
Diff: MBed_Adafruit_GPS.cpp
- Revision:
- 6:7b7e9dc49edd
- Parent:
- 5:ce26d53dc358
- Child:
- 7:3f389529228e
--- a/MBed_Adafruit_GPS.cpp Tue Aug 09 13:04:23 2016 +0000 +++ b/MBed_Adafruit_GPS.cpp Wed Sep 14 11:01:52 2016 +0000 @@ -50,6 +50,7 @@ // found GSA char *p = nmea; GPGSAdata = nmea; + printf("%s",nmea); return true; } @@ -59,6 +60,7 @@ // found GGA char *p = nmea; GPGGAdata = nmea; + printf("%s",nmea); // get time p = strchr(p, ',')+1; float timef = atof(p); @@ -134,7 +136,7 @@ // found RMC char *p = nmea; this->GPRMCdata = nmea; - //printf("B%s",this->GPRMCdata); + printf("%s",nmea); // get time p = strchr(p, ',')+1; float timef = atof(p);