update in APRS listening

This commit is contained in:
richonguzman
2024-03-27 11:26:02 -03:00
parent 110c6d600b
commit 1365ae67a1
3 changed files with 36 additions and 36 deletions
+5 -1
View File
@@ -124,7 +124,7 @@ void loop() {
if (packet != "") {
if (Config.aprs_is.active) { // If APRSIS enabled
APRS_IS_Utils::loop(packet); // Send received packet to APRSIS
APRS_IS_Utils::processLoRaPacket(packet); // Send received packet to APRSIS
}
if (Config.digi.mode == 2) { // If Digi enabled
@@ -140,5 +140,9 @@ void loop() {
}
}
if (Config.aprs_is.active) { // If APRSIS enabled
APRS_IS_Utils::listenAPRSIS(); // listen received packet from APRSIS
}
show_display(firstLine, secondLine, thirdLine, fourthLine, fifthLine, sixthLine, seventhLine, 0);
}