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:
parent
e823d7f944
commit
16d88e9083
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user