Skip to content

Commit 2b1d298

Browse files
Link request retransmission delay changed (#1895)
1 parent acbf1ac commit 2b1d298

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

source/6LoWPAN/Thread/thread_router_bootstrap.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2069,8 +2069,9 @@ static int8_t thread_router_bootstrap_synch_request_send(protocol_interface_info
20692069
tr_debug("Buffer overflow at message write");
20702070
}
20712071

2072-
timeout.retrans_max = THREAD_REQUEST_MAX_RETRY_CNT;
2073-
timeout.timeout_init = 1;
2072+
// timeout set to two seconds, no retries
2073+
timeout.retrans_max = 1;
2074+
timeout.timeout_init = 2;
20742075
timeout.timeout_max = 3;
20752076
timeout.delay = MLE_NO_DELAY;
20762077

0 commit comments

Comments
 (0)