Detailed Description

Macros

#define CONFIG_CORD_LT   (86400UL)
 Default lifetime in seconds (the default is 1 day)
 
#define CONFIG_CORD_UPDATE_INTERVAL   ((CONFIG_CORD_LT / 4) * 3)
 Default client update interval (default is 3/4 the lifetime)
 

Endpoint ID definition

Per default, the endpoint ID (ep) is generated by concatenation of a user defined prefix CORD_EP_PREFIX and a locally unique ID (luid) encoded in hexadecimal formatting with the given length of characters CORD_EP_SUFFIX_LEN.

Alternatively, the endpoint ID value can be defined at compile time by assigning a string value to the CONFIG_CORD_EP macro.

#define CONFIG_CORD_EP   "MyNewEpName"
 Endpoint ID definition.