ht-ce62 fix

This commit is contained in:
richonguzman 2024-04-20 13:17:25 -04:00
parent 7ab5ffa81d
commit 5333a68d04
1 changed files with 3 additions and 2 deletions

View File

@ -105,7 +105,7 @@ void setup() {
Serial.println(packet); Serial.println(packet);
if (Config.digi.mode == 2) { // If Digi enabled 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 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"; 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; lastBeacon = time;
} }