Configuration options for the LwM2M client implementation based on the Wakaama package. More...

Detailed Description

Configuration options for the LwM2M client implementation based on the Wakaama package.

Files

file  lwm2m_client_config.h
 LwM2M client configurations.
 

Macros

#define CONFIG_LWM2M_STANDARD_PORT   "5683"
 CoAP default port of the LwM2M server.
 
#define CONFIG_LWM2M_DTLS_PORT   "5684"
 CoAPS default port of the LwM2M server.
 
#define CONFIG_LWM2M_BSSERVER_PORT   "5685"
 CoAP default port of the LwM2M bootstrap server.
 
#define CONFIG_LWM2M_LOCAL_PORT   "5683"
 Default port for the local LwM2M instance.
 
#define CONFIG_LWM2M_DEVICE_NAME   "testRIOTDevice"
 Device name used to register at the LwM2M server.
 
#define CONFIG_LWM2M_DEVICE_TTL   300
 Lifetime of the device object on the LwM2M server.
 
#define CONFIG_LWM2M_SERVER_URI   "coap://[fd00:dead:beef::1]"
 LwM2M server URI to register/bootstrap with. More...
 
#define CONFIG_LWM2M_SERVER_ID   10
 Numeric ID of CONFIG_LWM2M_SERVER_URI.
 
#define CONFIG_LWM2M_ALT_PATH   NULL
 Alternate path to place LwM2M resources.
 
#define CONFIG_LWM2M_BOOTSTRAP
 Define to 1 to specify that CONFIG_LWM2M_SERVER_URI is a bootstrap server. More...
 
#define CONFIG_LWM2M_DEVICE_MANUFACTURER   "A RIOT maker"
 Device object manufacturer string.
 
#define CONFIG_LWM2M_DEVICE_MODEL   RIOT_BOARD
 Device object model. More...
 
#define CONFIG_LWM2M_DEVICE_SERIAL   "undefined"
 Device object serial number.
 
#define CONFIG_LWM2M_DEVICE_FW_VERSION   RIOT_VERSION
 Device object firmware version. More...
 
#define CONFIG_LWM2M_DEVICE_TYPE   "RIOT device"
 Device object device type.
 
#define CONFIG_LWM2M_DEVICE_HW_VERSION   RIOT_BOARD
 Device object hardware version. More...
 
#define CONFIG_LWM2M_DEVICE_SW_VERSION   RIOT_VERSION
 Device object software version. More...
 

Device bindings and queue modes

This options are meant to be set either via Kconfig or CFLAGS:

CFLAGS += -DCONFIG_LWM2M_DEVICE_BINDING_UQ
Note
Only one option should be selected. If more than one is defined the priority follows this order. By default CONFIG_LWM2M_DEVICE_BINDING_U is assumed.
#define CONFIG_LWM2M_DEVICE_BINDING_U
 UDP binding.
 
#define CONFIG_LWM2M_DEVICE_BINDING_UQ
 UDP binding with Queue mode.
 
#define CONFIG_LWM2M_DEVICE_BINDING_S
 SMS binding.
 
#define CONFIG_LWM2M_DEVICE_BINDING_SQ
 SMS binding with Queue mode.
 
#define CONFIG_LWM2M_DEVICE_BINDING_US
 UDP and SMS bindings.
 
#define CONFIG_LWM2M_DEVICE_BINDING_UQS
 UDP and SMS bindings with Queue mode.
 

Macro Definition Documentation

◆ CONFIG_LWM2M_BOOTSTRAP

#define CONFIG_LWM2M_BOOTSTRAP

Define to 1 to specify that CONFIG_LWM2M_SERVER_URI is a bootstrap server.

To define just add it to your CFLAGS in your application's Makefile:

CFLAGS += -DCONFIG_LWM2M_BOOTSTRAP=1

Definition at line 110 of file lwm2m_client_config.h.

◆ CONFIG_LWM2M_DEVICE_FW_VERSION

#define CONFIG_LWM2M_DEVICE_FW_VERSION   RIOT_VERSION

Device object firmware version.

Note
Defaults to the running RIOT version

Definition at line 142 of file lwm2m_client_config.h.

◆ CONFIG_LWM2M_DEVICE_HW_VERSION

#define CONFIG_LWM2M_DEVICE_HW_VERSION   RIOT_BOARD

Device object hardware version.

Note
Defaults to the board name

Definition at line 205 of file lwm2m_client_config.h.

◆ CONFIG_LWM2M_DEVICE_MODEL

#define CONFIG_LWM2M_DEVICE_MODEL   RIOT_BOARD

Device object model.

Note
Defaults to the board name

Definition at line 126 of file lwm2m_client_config.h.

◆ CONFIG_LWM2M_DEVICE_SW_VERSION

#define CONFIG_LWM2M_DEVICE_SW_VERSION   RIOT_VERSION

Device object software version.

Note
Defaults to the running RIOT version

Definition at line 214 of file lwm2m_client_config.h.

◆ CONFIG_LWM2M_SERVER_URI

#define CONFIG_LWM2M_SERVER_URI   "coap://[fd00:dead:beef::1]"

LwM2M server URI to register/bootstrap with.

Note
The host part of the URI MUST be a valid IPv6 address. Host names can not be resolved at this time.

Definition at line 83 of file lwm2m_client_config.h.