ESP32-PaxCounter/include/gpsread.h

26 lines
666 B
C
Raw Normal View History

#ifndef _GPSREAD_H
#define _GPSREAD_H
2018-07-15 14:28:05 +02:00
#include <TinyGPS++.h> // library for parsing NMEA data
2019-02-21 23:17:01 +01:00
#include <RtcDateTime.h>
#include "timekeeper.h"
2018-07-17 13:51:41 +02:00
#ifdef GPS_I2C // Needed for reading from I2C Bus
#include <Wire.h>
#endif
2019-04-14 14:35:07 +02:00
#define NMEA_FRAME_SIZE 82 // NEMA has a maxium of 82 bytes per record
2019-08-04 23:18:04 +02:00
#define NMEA_COMPENSATION_FACTOR 480 // empiric for Ublox Neo 6M
2019-02-27 00:52:27 +01:00
extern TinyGPSPlus gps; // Make TinyGPS++ instance globally availabe
extern TaskHandle_t GpsTask;
2018-07-17 11:53:43 +02:00
2018-11-25 16:05:30 +01:00
int gps_init(void);
int gps_config();
2020-01-03 09:59:10 +01:00
bool gps_hasfix();
2019-07-28 23:51:24 +02:00
void gps_storelocation(gpsStatus_t *gps_store);
2018-07-15 14:28:05 +02:00
void gps_loop(void *pvParameters);
2020-03-11 23:47:33 +01:00
time_t get_gpstime(uint16_t *msec);
time_t get_gpstime(void);
2018-07-15 14:28:05 +02:00
#endif