OpenRTX/platform/drivers/GPS/gps_linux.c

98 wiersze
3.2 KiB
C

2021-02-10 19:54:13 +00:00
/***************************************************************************
2025-04-04 17:06:57 +00:00
* Copyright (C) 2021 - 2025 by Federico Amedeo Izzo IU2NUO, *
2022-06-02 07:56:05 +00:00
* Niccolò Izzo IU2KIN *
* Frederik Saraci IU2NRO *
* Silvano Seva IU2KWO *
2021-02-10 19:54:13 +00:00
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, see <http://www.gnu.org/licenses/> *
***************************************************************************/
#include <sys/time.h>
2025-08-14 17:40:32 +00:00
#include <stdbool.h>
2021-02-10 19:54:13 +00:00
#include <string.h>
2025-08-14 17:40:32 +00:00
#include <gps.h>
2021-02-10 19:54:13 +00:00
#define MAX_NMEA_LEN 80
#define NMEA_SAMPLES 8
2025-08-14 17:40:32 +00:00
static const char test_nmea_sentences[NMEA_SAMPLES][MAX_NMEA_LEN] =
{
"$GPGGA,223659.522,5333.735,N,00959.130,E,1,12,1.0,0.0,M,0.0,M,,*62",
"$GPGSA,A,3,01,02,03,04,05,06,07,08,09,10,11,12,1.0,1.0,1.0*30",
"$GPGSV,3,1,12,30,79,066,27,05,63,275,21,07,42,056,,13,40,289,13*76",
"$GPGSV,3,2,12,14,36,147,20,28,30,151,,09,13,100,,02,08,226,30*72",
"$GPGSV,3,3,12,18,05,333,,15,04,289,22,08,03,066,,27,02,030,*79",
"$GPRMC,223659.522,A,5333.735,N,00959.130,E,,,160221,000.0,W*70",
"$GPVTG,92.15,T,,M,0.15,N,0.28,K,A*0C"
};
2025-08-14 17:40:32 +00:00
static long long startTime;
static bool enabled = true;
static int currSentence = 0;
2021-02-10 19:54:13 +00:00
2025-08-14 17:40:32 +00:00
static inline long long now()
2021-02-10 19:54:13 +00:00
{
2025-08-14 17:40:32 +00:00
struct timeval te;
gettimeofday(&te, NULL);
2021-02-10 19:54:13 +00:00
2025-08-14 17:40:32 +00:00
return (te.tv_sec*1000LL) + (te.tv_usec/1000);
2021-02-10 19:54:13 +00:00
}
2025-08-14 17:40:32 +00:00
static void enable(void *priv)
2021-02-10 19:54:13 +00:00
{
2025-08-14 17:40:32 +00:00
(void) priv;
enabled = true;
currSentence = 0;
startTime = now();
2021-02-10 19:54:13 +00:00
}
2025-08-14 17:40:32 +00:00
static void disable(void *priv)
2021-02-10 19:54:13 +00:00
{
2025-08-14 17:40:32 +00:00
(void) priv;
enabled = false;
2021-02-10 19:54:13 +00:00
}
2025-08-14 17:40:32 +00:00
static int getNmeaSentence(void *priv, char *buf, const size_t bufSize)
2021-02-10 19:54:13 +00:00
{
2025-08-14 17:40:32 +00:00
(void) priv;
2021-02-10 19:54:13 +00:00
2025-08-14 17:40:32 +00:00
// GPS off > no data
if(!enabled)
return 0;
2025-08-14 17:40:32 +00:00
// Emit one sentence every 1s
long long currTime = now();
if((currTime - startTime) < 1000)
return 0;
2025-08-14 17:40:32 +00:00
size_t len = strnlen(test_nmea_sentences[currSentence], MAX_NMEA_LEN);
if(len > bufSize)
2021-02-17 10:21:46 +00:00
return -1;
2025-08-14 17:40:32 +00:00
strncpy(buf, test_nmea_sentences[currSentence], bufSize);
currSentence += 1;
currSentence %= NMEA_SAMPLES;
startTime = currTime;
2025-08-14 17:40:32 +00:00
return (int) len;
}
2025-08-14 17:40:32 +00:00
const struct gpsDevice gps = {
.enable = enable,
.disable = disable,
.getSentence = getNmeaSentence
};