1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-06-03 14:48:53 +00:00

TEMP: increase retransmission interval 5x

This commit is contained in:
M1nd3r 2025-04-25 16:40:59 +02:00
parent e823d7f944
commit 16d88e9083

View File

@ -53,7 +53,7 @@ class TransmissionLoop:
async def _wait(self, counter: int = 0) -> None:
timeout_ms = round(10200 - 1010000 / (counter + 100))
await loop.sleep(timeout_ms)
await loop.sleep(5 * timeout_ms) # TODO temporarily added 5x coefficient
def __del__(self) -> None:
self.stop_immediately()