From 2c6665b5572ea0698066a654b7a47c014ebdaa2a Mon Sep 17 00:00:00 2001 From: "Ricardo Guzman (Richonguzman)" Date: Thu, 11 Dec 2025 13:44:06 -0300 Subject: [PATCH] FIX for boards with GPS onboard --- src/LoRa_APRS_iGate.cpp | 4 ++-- src/utils.cpp | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 91f84fd..ea42b34 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -67,8 +67,8 @@ ___________________________________________________________________*/ #endif -String versionDate = "2025-12-01"; -String versionNumber = "3.1.5"; +String versionDate = "2025-12-11"; +String versionNumber = "3.1.5.1"; Configuration Config; WiFiClient aprsIsClient; WiFiClient mqttClient; diff --git a/src/utils.cpp b/src/utils.cpp index a61b2ac..a10e2c0 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -158,6 +158,8 @@ namespace Utils { showActiveStations(); + beaconPacket = iGateBeaconPacket; + secondaryBeaconPacket = iGateLoRaBeaconPacket; #ifdef HAS_GPS if (Config.beacon.gpsActive && Config.digi.ecoMode == 0) { GPS_Utils::getData(); @@ -176,9 +178,6 @@ namespace Utils { secondaryBeaconPacket += encodedGPS; } } - #else - beaconPacket = iGateBeaconPacket; - secondaryBeaconPacket = iGateLoRaBeaconPacket; #endif if (Config.wxsensor.active) {