nmea: parse $GPGLL sentences for position
[project/ugps.git] / nmea.h
diff --git a/nmea.h b/nmea.h
index fea9879eb48e001255f4a49761bcedc7b7802b65..9f46d299983ef600d982ba798a4c86f6b1d92d11 100644 (file)
--- a/nmea.h
+++ b/nmea.h
@@ -23,8 +23,9 @@
 
 #include <libubox/ustream.h>
 
-extern char longitude[32], lattitude[32], course[16], speed[16], elivation[16];
+extern char longitude[33], latitude[33], course[17], speed[17], elevation[17];
 extern int nmea_open(char *dev, struct ustream_fd *s, speed_t speed);
 extern void gps_timestamp(void);
+extern unsigned int adjust_clock;
 
 #endif