mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-26 02:14:35 +01:00
encoded byte update
This commit is contained in:
parent
dedd7152d9
commit
ad996c8a49
|
|
@ -47,7 +47,7 @@ ___________________________________________________________________*/
|
|||
#endif
|
||||
|
||||
|
||||
String versionDate = "2025.03.18";
|
||||
String versionDate = "2025.03.19";
|
||||
Configuration Config;
|
||||
WiFiClient espClient;
|
||||
#ifdef HAS_GPS
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue