Skip to content

Commit

Permalink
Link request retransmission delay changed (ARMmbed#1895)
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakvenugopal authored Nov 5, 2018
1 parent acbf1ac commit 2b1d298
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/6LoWPAN/Thread/thread_router_bootstrap.c
Original file line number Diff line number Diff line change
Expand Up @@ -2069,8 +2069,9 @@ static int8_t thread_router_bootstrap_synch_request_send(protocol_interface_info
tr_debug("Buffer overflow at message write");
}

timeout.retrans_max = THREAD_REQUEST_MAX_RETRY_CNT;
timeout.timeout_init = 1;
// timeout set to two seconds, no retries
timeout.retrans_max = 1;
timeout.timeout_init = 2;
timeout.timeout_max = 3;
timeout.delay = MLE_NO_DELAY;

Expand Down

0 comments on commit 2b1d298

Please sign in to comment.