From 702f4abcbbec3a5fee984cee87d3547af80134c5 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Wed, 21 Aug 2024 19:11:05 -0400 Subject: [PATCH] update for gps beacon with timestamp --- src/LoRa_APRS_iGate.cpp | 2 +- src/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 5094edc..4db000b 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -38,7 +38,7 @@ ________________________________________________________________________________ #include "A7670_utils.h" #endif -String versionDate = "2024.08.19"; +String versionDate = "2024.08.21"; Configuration Config; WiFiClient espClient; diff --git a/src/utils.cpp b/src/utils.cpp index c0fe460..838a7ff 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -246,7 +246,7 @@ namespace Utils { } else if (packet[firstColonIndex + 1] == '>') { sixthLine += "> NEW STATUS"; seventhLine = seventhLineHelper; - } else if (packet[firstColonIndex + 1] == '!' || packet[firstColonIndex + 1] == '=') { + } else if (packet[firstColonIndex + 1] == '!' || packet[firstColonIndex + 1] == '=' || packet[firstColonIndex + 1] == '@') { sixthLine += "> GPS BEACON"; if (!Config.syslog.active) { GPS_Utils::getDistanceAndComment(packet); // to be checked!!!