Fork of SerialGPS that uses the SoftSerial library instead of the mbed serial device.

Fork of SerialGPS by Components

Revision:
4:bc32bec014b3
Parent:
3:4e2136c38f29
--- a/SerialGPS.h	Wed May 07 07:22:16 2014 +0000
+++ b/SerialGPS.h	Wed Nov 29 15:41:39 2017 +0000
@@ -22,6 +22,7 @@
  */
 
 #include "mbed.h"
+#include "SoftSerial.h"
 
 #ifndef MBED_GPS_H
 #define MBED_GPS_H
@@ -74,7 +75,7 @@
     float trunc(float v);
     void getline();
     
-    Serial _gps;
+    SoftSerial _gps;
 };
 
 #endif
\ No newline at end of file