mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
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.
This commit is contained in:
parent
5843a12c71
commit
cb99eb4ae8
1 changed files with 1 additions and 3 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue