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: C12832_lcd FatFileSystemCpp MMA7660 CMPS03 GPS
Fork of MSCUsbHost by
Program to link a compass and a GPS to an MBED to produce a CSV file which can be used to track a bicycle around a field
Results can be found here
Diff: main.cpp
- Revision:
- 15:b5b2ca683d64
- Parent:
- 14:d70e165ddf30
- Child:
- 16:30f9a5e6abc2
--- a/main.cpp	Tue Mar 21 15:39:17 2017 +0000
+++ b/main.cpp	Tue Mar 21 15:46:28 2017 +0000
@@ -52,9 +52,9 @@
         GPS = fopen("/USB/GPS.csv", "a");
         if (gps.sample())
         {
-            fprintf(GPS, "\n%f, %f\r\n", gps.latitude, gps.longitude);
+            fprintf(GPS, "\n%f, %f, %f\r\n", gps.latitude, gps.longitude, gps.rtime);
             lcd.locate(1,1);
-            lcd.printf("GPS: %.4f, %.4f", gps.latitude, gps.longitude);
+            lcd.printf("GPS: %.4f, %.4f, %f", gps.latitude, gps.longitude, gps.rtime);
         }       
         else // For no signal
         {
    
