nmea gps library - without any serial

Dependents:   HARP2 HARP3 20180621_FT813

Fork of GPS_parser by Tyler Weaver

NMEA GPS Serial Output parser.

Routine taken from NMEA Software Standard (NMEA 0183) http://www.winsystems.com/software/nmea.pdf

Only handles GGA and RMC Messages

Revision:
3:465354a08ff8
Parent:
1:39d75e44b214
Child:
4:6e2d98b5cb86
--- a/GPS.h	Fri Nov 23 21:16:27 2012 +0000
+++ b/GPS.h	Fri Dec 07 19:18:35 2012 +0000
@@ -44,12 +44,6 @@
     double calc_dist_to_km(float, float);
     double calc_dist_to_m(float, float);
     
-#ifdef OPEN_LOG
-    void start_log(void);
-    void new_file(void);
-    void stop_log(void);
-#endif    
-    
 private:
     float nmea_to_dec(float, char);
     float trunc(float v);
@@ -60,9 +54,6 @@
     char msg[1024];
     char bfr[1030];
     bool is_logging;
-#ifdef OPEN_LOG
-    Logger _openLog;
-#endif
     // calculated values
     float dec_longitude;
     float dec_latitude;