From c87f0a84e1f04a670dc674622645e84743956021 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Tue, 6 Jun 2023 13:29:18 -0400 Subject: [PATCH] update TypeMessage Received Display --- src/LoRa_APRS_iGate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index cdfbb54..10b4ed1 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -188,7 +188,7 @@ void checkReceivedPacket(String packet) { show_display(firstLine, secondLine, "Callsign = " + Sender, "TYPE --> MESSAGE", 1000); } else if (aprsPacket.indexOf(":>") >= 10) { show_display(firstLine, secondLine, "Callsign = " + Sender, "TYPE --> NEW STATUS", 1000); - } else if (aprsPacket.indexOf(":!") >= 10) { + } else if (aprsPacket.indexOf(":!") >= 10 || aprsPacket.indexOf(":=") >= 10) { show_display(firstLine, secondLine, "Callsign = " + Sender, "TYPE --> GPS BEACON", 1000); } else { show_display(firstLine, secondLine, "Callsign = " + Sender, "TYPE --> ??????????", 1000); @@ -264,7 +264,7 @@ void loop() { if (!Config.display.keepLastPacketOnScreen) { show_display(firstLine, secondLine, thirdLine, fourthLine, 0); } - + uint32_t lastTx = millis() - lastTxTime; if (lastTx >= Config.beaconInterval*60*1000) { beacon_update = true;