redundant queue cleanup

This commit is contained in:
liquidraver
2026-03-05 18:13:14 +01:00
parent 2d4b0c0a67
commit 06aed018c3
5 changed files with 14 additions and 28 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ bool Mesh::allowPacketForward(const Packet *packet)
uint32_t Mesh::getRetransmitDelay(const Packet *packet)
{
uint32_t t = (_radio->getEstAirtimeFor(packet->getRawLength()) * 52 / 50) / 2;
return _rng->nextInt(0, 3) * t;
return _rng->nextInt(0, 7) * t;
}
uint32_t Mesh::getCADFailRetryDelay() const