Skip to content

Commit

Permalink
avoid msg TX-RF of telemetry declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Jan 22, 2025
1 parent 858162e commit f7319ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aprs_is_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ namespace APRS_IS_Utils {
}
} else {
Utils::print("Received Message from APRS-IS : " + packet);
if (STATION_Utils::wasHeard(Addressee)) {
if (STATION_Utils::wasHeard(Addressee) && packet.indexOf("EQNS.") == -1 && packet.indexOf("UNIT.") == -1 && packet.indexOf("PARM.") == -1) {
STATION_Utils::addToOutputPacketBuffer(buildPacketToTx(packet, 1));
displayToggle(true);
lastScreenOn = millis();
Expand Down

0 comments on commit f7319ce

Please sign in to comment.