GPS Fixes for nrf52 (#2675)

Expands board serial buffer from 64 (!) to 1024
Adds some debugging messages when problems are detected.
This commit is contained in:
Jonathan Bennett
2023-08-02 10:08:59 -05:00
committed by GitHub
parent 7fe815a327
commit 06a6a992c2
3 changed files with 18 additions and 4 deletions

View File

@@ -13,6 +13,7 @@ class NMEAGPS : public GPS
{
TinyGPSPlus reader;
uint8_t fixQual = 0; // fix quality from GPGGA
uint32_t lastChecksumFailCount = 0;
#ifndef TINYGPS_OPTION_NO_CUSTOM_FIELDS
// (20210908) TinyGps++ can only read the GPGSA "FIX TYPE" field
@@ -53,4 +54,4 @@ class NMEAGPS : public GPS
virtual bool hasLock() override;
virtual bool hasFlow() override;
};
};