Revert "develop --> Master" (#8244)

This commit is contained in:
Tom Fifield
2025-10-07 06:00:09 -05:00
committed by GitHub
co-authored by GitHub
parent 1d5b343836
commit 5bcc47dddb
14 changed files with 136 additions and 229 deletions
+2 -6
View File
@@ -1589,12 +1589,8 @@ bool GPS::lookForLocation()
#ifndef TINYGPS_OPTION_NO_STATISTICS
if (reader.failedChecksum() > lastChecksumFailCount) {
// In a GPS_DEBUG build we want to log all of these. In production, we only care if there are many of them.
#ifndef GPS_DEBUG
if (reader.failedChecksum() > 4)
#endif
LOG_WARN("%u new GPS checksum failures, for a total of %u", reader.failedChecksum() - lastChecksumFailCount,
reader.failedChecksum());
LOG_WARN("%u new GPS checksum failures, for a total of %u", reader.failedChecksum() - lastChecksumFailCount,
reader.failedChecksum());
lastChecksumFailCount = reader.failedChecksum();
}
#endif