Skip to content

Commit 4b97a6d

Browse files
authored
Increase startup reset wait to 2 seconds (#714)
When connecting over a TCP serial socket (e.g. the silabs-multiprotocol add-on), the NCP reset frame can take ~1.5s to arrive after the remote reuses the socket from a previous instance. The 1s wait causes a spurious retry on every startup; bumping to 2s lets the reset land within the first attempt.
1 parent 0d5b1b7 commit 4b97a6d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bellows/ezsp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
UART_PROBE_TIMEOUT = 3
4444
NETWORK_PROBE_TIMEOUT = 7
4545
NETWORK_OPS_TIMEOUT = 10
46-
NETWORK_COORDINATOR_STARTUP_RESET_WAIT = 1
46+
NETWORK_COORDINATOR_STARTUP_RESET_WAIT = 2
4747

4848

4949
class EZSP:

0 commit comments

Comments
 (0)