Gerson Fernando Budke d02efca65d Revert "examples: Exclude atxmega-a1u-xpro board due low mem"
This reverts commit d23b139938aadd04906c2364535f3fbfb35f9f31.
2021-08-24 08:35:41 -03:00
..

CoRE Resource Directory: Endpoint Example

This example application demonstrates the usage of RIOT's Resource Directory (RD) endpoint module, called cord_ep. This module supports the registration, update, and removal procedures as defined in draft-ietf-core-resource-directory-27.

Usage

The examples includes a shell command that you can use to interact with a given RD, called cord_ep. Simply use that shell command without parameters for more information on its usage.

Some connection parameters are configured statically during compile time, namely the lifetime (CONFIG_CORD_LT) and the node's endpoint name (CONFIG_CORD_EP). You can change these values at compile time by overriding their defines using command line arguments:

CFLAGS="-DCONFIG_CORD_EP=\\\"your_ep_name_here\\\"" make all

or by setting their values in the application's Makefile:

CFLAGS += "-DCONFIG_CORD_EP=\"MyNewEpName\""