Browse Source

Remove retransmit check for RS232 bridge in logTx

Since the flag is preserved and respected by the mesh processing on the receiving end, there's no risk of these packets being retransmitted endlessly.
pull/454/head
João Brázio 9 months ago
parent
commit
cb99eb4ae8
No known key found for this signature in database GPG Key ID: 56A1490716A324DD
  1. 4
      examples/simple_repeater/main.cpp

4
examples/simple_repeater/main.cpp

@ -309,9 +309,7 @@ protected:
}
void logTx(mesh::Packet* pkt, int len) override {
#ifdef WITH_RS232_BRIDGE
if (!pkt->isMarkedDoNotRetransmit()) {
bridge->onPacketTransmitted(pkt);
}
bridge->onPacketTransmitted(pkt);
#endif
if (_logging) {
File f = openAppend(PACKET_LOG_FILE);

Loading…
Cancel
Save