Skip to content
Snippets Groups Projects
Commit 87e334a2 authored by Ken Bannister's avatar Ken Bannister
Browse files

net/nanocoap: add macro for timeout calculation

parent d5e4da74
No related branches found
No related tags found
No related merge requests found
......@@ -192,6 +192,15 @@ extern "C" {
*/
#define COAP_ACK_TIMEOUT (2U)
#define COAP_RANDOM_FACTOR (1.5)
/**
* @brief Maximum variation for confirmable timeout.
*
* Must be an integer, defined as:
*
* (COAP_ACK_TIMEOUT * COAP_RANDOM_FACTOR) - COAP_ACK_TIMEOUT
*/
#define COAP_ACK_VARIANCE (1U)
#define COAP_MAX_RETRANSMIT (4)
#define COAP_NSTART (1)
#define COAP_DEFAULT_LEISURE (5)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment