encoded byte update

This commit is contained in:
richonguzman 2025-03-18 19:10:15 -03:00
parent dedd7152d9
commit ad996c8a49
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ ___________________________________________________________________*/
#endif
String versionDate = "2025.03.18";
String versionDate = "2025.03.19";
Configuration Config;
WiFiClient espClient;
#ifdef HAS_GPS

View file

@ -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);