gps now over spi

This commit is contained in:
2022-12-09 14:10:57 +01:00
parent 599f176622
commit f14992c040
26 changed files with 974 additions and 225 deletions
+1 -4
View File
@@ -30,8 +30,7 @@ class NTRIPClient {
bool isConnected();
NTRIPClientStates getClientState() { return this->state; }
static void printPVTdata(UBX_NAV_PVT_data_t *ubxDataStruct);
static void setOutputStatusPrintPVTdata(bool status);
private:
void pushGPGGA(NMEA_GGA_data_t *nmeaData);
@@ -61,8 +60,6 @@ class NTRIPClient {
const uint16_t tryReconnectTime = 5000;
const uint16_t bufferSize = 512;
const uint16_t pushGPGGATime = 10000;
static bool outputStatusPrintPVTdata;
};
#endif