From ad996c8a49ee9084e4adfe401588ae9003161b0b Mon Sep 17 00:00:00 2001 From: richonguzman Date: Tue, 18 Mar 2025 19:10:15 -0300 Subject: [PATCH] encoded byte update --- src/LoRa_APRS_iGate.cpp | 2 +- src/gps_utils.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index ec76c3b..4f8fa21 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -47,7 +47,7 @@ ___________________________________________________________________*/ #endif -String versionDate = "2025.03.18"; +String versionDate = "2025.03.19"; Configuration Config; WiFiClient espClient; #ifdef HAS_GPS diff --git a/src/gps_utils.cpp b/src/gps_utils.cpp index 636ffde..43f6a84 100644 --- a/src/gps_utils.cpp +++ b/src/gps_utils.cpp @@ -212,7 +212,7 @@ namespace GPS_Utils { if (encodedBytePosition != 0) { char currentChar = packet[encodedBytePosition]; - if (currentChar == 'G' || currentChar == 'Q' || currentChar == '[' || currentChar == 'H' || currentChar == 'X' || currentChar == '3' || currentChar == 'S') { + if (currentChar == 'G' || currentChar == 'Q' || currentChar == '[' || currentChar == 'H' || currentChar == 'X') { return decodeEncodedGPS(packet); // If valid encoded data position is found, decode it } else { return getReceivedGPS(packet);