2018-07-15 14:28:05 +02:00
|
|
|
#ifndef gps_H
|
|
|
|
#define gps_H
|
|
|
|
|
|
|
|
#include <TinyGPS++.h>
|
|
|
|
|
2018-07-17 11:53:43 +02:00
|
|
|
extern TinyGPSPlus gps; // Make TinyGPS++ instance globally availabe
|
|
|
|
|
2018-07-15 14:28:05 +02:00
|
|
|
void gps_read(void);
|
|
|
|
void gps_loop(void *pvParameters);
|
|
|
|
|
|
|
|
#endif
|