From 5333a68d04a571f2cf21a5bb7b30c862a66d8132 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Sat, 20 Apr 2024 13:17:25 -0400 Subject: [PATCH] ht-ce62 fix --- src/LoRa_APRS_iGate.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 4e5839f..743ca1a 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -105,7 +105,7 @@ void setup() { Serial.println(packet); if (Config.digi.mode == 2) { // If Digi enabled - DIGI_Utils::loop(packet); // Send received packet to Digi + DIGI_Utils::processLoRaPacket(packet); // Send received packet to Digi } if (packet.indexOf(Config.callsign + ":?APRSELP{") != -1) { // Send `?APRSELP` to exit low power @@ -129,7 +129,8 @@ void setup() { comment += " Ext=" + String(BATTERY_Utils::checkExternalVoltage(),2) + "V"; } - LoRa_Utils::sendNewPacket("APRS", iGateLoRaBeaconPacket + comment); + STATION_Utils::addToOutputPacketBuffer(iGateLoRaBeaconPacket + comment); + //LoRa_Utils::sendNewPacket("APRS", iGateLoRaBeaconPacket + comment); lastBeacon = time; }