Application integration
This section describes the needed interaction between the LwM2M carrier library and the user application.
The LwM2M carrier library has an OS abstraction layer.
This abstraction layer makes the LwM2M carrier library independent of the nRF Connect SDK modules and underlying implementation of primitives such as timers, non-volatile storage, and heap allocation.
For more information, see lwm2m_os.h
.
It provides an abstraction of the following modules:
nRF Connect SDK modules:
Zephyr modules:
Kernel Services (
include/kernel.h
)
The OS abstraction layer is fully implemented for the nRF Connect SDK, and it needs to be ported if used with other RTOS or on other systems.
Configuration
To run the library in an application, you must implement the application with the API of the library.
Enable the library by setting the CONFIG_LWM2M_CARRIER
Kconfig option to y
.
The nRF9160: LwM2M carrier sample project configuration (nrf/samples/nrf9160/lwm2m_carrier/prj.conf
) contains all the configurations that are needed by the LwM2M carrier library.
You can provide the initialization parameter lwm2m_carrier_config_t
to overwrite the carrier default settings with the following Kconfig options:
CONFIG_LWM2M_CARRIER_CERTIFICATION_MODE
:This configuration specifies if the LwM2M carrier library will connect to the carrier’s certification servers or production servers.
Expected to be set during self-testing part of the certification process.
This configuration is ignored if
CONFIG_LWM2M_CARRIER_USE_CUSTOM_URI
is set.
CONFIG_LWM2M_CARRIER_USE_CUSTOM_URI
:This configuration, together with
CONFIG_LWM2M_CARRIER_USE_CUSTOM_URI
lets the LwM2M carrier library connect to a custom server other than the normal carrier server, thereby enabling the generic mode.Expected to be set during self-testing, or if the end product is not to be certified with the applicable carriers. See Certification and version dependencies.
If this configuration is set,
CONFIG_LWM2M_CARRIER_CERTIFICATION_MODE
is ignored.
CONFIG_LWM2M_CARRIER_IS_SERVER_BOOTSTRAP
:This configuration specifies if the custom LwM2M server is a LwM2m Bootstrap-Server.
This setting is ignored if
CONFIG_LWM2M_CARRIER_CERTIFICATION_MODE
is set, since the LwM2M library will instead connect to the servers specified by the applicable carriers.
CONFIG_LWM2M_CARRIER_SERVER_LIFETIME
:This configuration specifies the lifetime of the custom LwM2M server.
This configuration is ignored if
CONFIG_LWM2M_CARRIER_CERTIFICATION_MODE
orCONFIG_LWM2M_CARRIER_IS_SERVER_BOOTSTRAP
is set.
CONFIG_LWM2M_CARRIER_SESSION_IDLE_TIMEOUT
:This configuration specifies the session idle timeout (inactivity). Upon timeout, the LwM2M carrier library disconnects from one or more device management servers.
The timeout closes the DTLS session. A new DTLS session will be created on the next activity (for example, lifetime trigger).
Leaving this configuration empty (0) sets it to a default of 60 seconds.
CONFIG_LWM2M_CARRIER_CUSTOM_PSK
:This configuration can be set to use a non-default Pre-Shared Key (PSK). If the string is empty, it is ignored.
If connecting to the normal carrier device management servers (normal operation), this configuration must not be set unless your carrier explicitly states to use a custom PSK, for example during self-testing.
If the
CONFIG_LWM2M_CARRIER_USE_CUSTOM_URI
option is set and the server requires a secure connection, a PSK is required.
CONFIG_LWM2M_CARRIER_USE_CUSTOM_APN
:This configuration, together with
CONFIG_LWM2M_CARRIER_CUSTOM_APN
produce different results depending on normal or generic mode of operation.If
CONFIG_LWM2M_CARRIER_USE_CUSTOM_URI
is not set (normal), this configuration supplies a fallback APN. This might be required in your application, depending on the requirements from the carrier.If
CONFIG_LWM2M_CARRIER_USE_CUSTOM_URI
is set (generic),CONFIG_LWM2M_CARRIER_CUSTOM_APN
is used instead of the default APN, (and there is no fallback APN).
This configuration allows the LwM2M carrier library to use a URI stored in the SIM card. The configuration in the SIM will take precedence over any other configuration. For example, if a bootstrap server URI is fetched from the SIM, the
CONFIG_LWM2M_CARRIER_IS_SERVER_BOOTSTRAP
configuration is ignored. If a production server URI is fetched from the SIM, theCONFIG_LWM2M_CARRIER_CERTIFICATION_MODE
configuration is ignored.
Note that these settings can put the LwM2M carrier library either in the normal mode where it connects to the applicable carriers, or in the generic mode where it can connect to any bootstrap server.
CONFIG_LWM2M_CARRIER_DEVICE_MANUFACTURER
,CONFIG_LWM2M_CARRIER_DEVICE_MODEL_NUMBER
,CONFIG_LWM2M_CARRIER_DEVICE_TYPE
,CONFIG_LWM2M_CARRIER_DEVICE_HARDWARE_VERSION
,CONFIG_LWM2M_CARRIER_DEVICE_SOFTWARE_VERSION
:These values are reported in the Device Object. They are not expected to change during run time.
If these values are not set by the application, the LwM2M carrier library sets the default values based on the modem and operator network.
CONFIG_LWM2M_CARRIER_LG_UPLUS
,CONFIG_LWM2M_CARRIER_LG_UPLUS_SERVICE_CODE
:This configuration sets the LG U+ service code, which is needed to identify your device in the LG U+ device management.
Note that application DFU is needed to enable LG U+ functionality.
Note
A change of the bootstrap server URI between builds does not trigger a new bootstrap. The bootstrap process is intended to happen only once unless it is initiated from the server. To redo the bootstrap process, you must erase the flash and then load your application again.
After calling the lwm2m_carrier_init()
function, your application can call the non-returning function lwm2m_carrier_run()
in its own thread.
Both these functions are called in nrf/lib/bin/lwm2m_carrier/os/lwm2m_carrier.c
, which is included into the project when you enable the LwM2M carrier library.
The lwm2m_carrier_event_handler()
function must be implemented by your application.
This is shown in the nRF9160: LwM2M carrier sample.
A weak implementation is included in nrf/lib/bin/lwm2m_carrier/os/lwm2m_carrier.c
.
See nrf/lib/bin/lwm2m_carrier/include/lwm2m_carrier.h
for all the events and API.
LwM2M carrier library events
Following are the various LwM2M carrier library events:
-
This event indicates that the carrier library has been successfully initialized. Modem library is initialized and can be used. See Requirements and application limitations). The application can now attach to the network.
If CA certificates are not already present in the modem, they can be written when receiving this event (and before attaching to the network). The CA certificates needed for your device depends on your network operator. The LwM2M carrier library will apply these certificates during certain out-of-band FOTA operations. See nRF9160: LwM2M carrier sample for an example of how these certificates are written to the modem using Modem key management library.
LWM2M_CARRIER_EVENT_LTE_LINK_DOWN
,LWM2M_CARRIER_EVENT_LTE_LINK_UP
:These events indicate that the device must connect to, or disconnect from the LTE network. They occur during the bootstrapping process, startup, and during FOTA.
LWM2M_CARRIER_EVENT_BOOTSTRAPPED
:This event indicates that the bootstrap sequence is complete, and that the device is ready to be registered.
This event is typically seen during the first boot-up.
LWM2M_CARRIER_EVENT_REGISTERED
:This event indicates that the device has registered successfully to the carrier’s device management servers.
-
This event indicates that the connection to the device management server has failed.
The
LWM2M_CARRIER_EVENT_DEFERRED
event appears instead of theLWM2M_CARRIER_EVENT_REGISTERED
event.The
timeout
parameter supplied with this event determines when the LwM2M carrier library will retry the connection.Following are the various deferred reasons:
LWM2M_CARRIER_DEFERRED_NO_REASON
- The application need not take any special action. Iftimeout
is 24 hours, the application can proceed with other activities until the retry takes place.LWM2M_CARRIER_DEFERRED_PDN_ACTIVATE
- This event indicates problem with the SIM card, or temporary network problems. If this persists, contact your carrier.LWM2M_CARRIER_DEFERRED_BOOTSTRAP_CONNECT
- The DTLS handshake with the bootstrap server has failed. If the application is using a custom PSK, verify that the format is correct.LWM2M_CARRIER_DEFERRED_BOOTSTRAP_SEQUENCE
- The bootstrap sequence is incomplete. The server failed either to acknowledge the request by the library, or to send objects to the library. Confirm that the carrier is aware of the IMEI.LWM2M_CARRIER_DEFERRED_SERVER_NO_ROUTE
,LWM2M_CARRIER_DEFERRED_BOOTSTRAP_NO_ROUTE
- There is a routing problem in the carrier network. If this event persists, contact the carrier.LWM2M_CARRIER_DEFERRED_SERVER_CONNECT
- This event indicates that the DTLS handshake with the server has failed. This typically happens if the bootstrap sequence has failed on the carrier side.LWM2M_CARRIER_DEFERRED_SERVER_REGISTRATION
- The server registration has not completed, and the server does not recognize the connecting device. If this event persists, contact the carrier.LWM2M_CARRIER_DEFERRED_SERVICE_UNAVAILABLE
- The server is unavailable due to maintenance.
LWM2M_CARRIER_EVENT_FOTA_START
:This event indicates that the modem update has started.
The application must immediately terminate any open TLS sessions.
-
This event indicates that the LwM2M carrier library will reboot the device.
If the application is not ready to reboot, it must return non-zero and then reboot at the earliest convenient time.
-
This event indicates an error.
The event data struct
lwm2m_carrier_event_error_t
contains the information about the error (code
andvalue
).Following are the valid error codes:
LWM2M_CARRIER_ERROR_CONNECT_FAIL
- This error is generated from thelte_lc_init_and_connect()
function. It indicates possible problems with the SIM card, or insufficient network coverage. Seevalue
field of the event.LWM2M_CARRIER_ERROR_DISCONNECT_FAIL
- This error is generated from thelte_lc_offline()
function. Seevalue
field of the event.LWM2M_CARRIER_ERROR_BOOTSTRAP
- This error is generated during the bootstrap procedure.Errors
More information
Recovery
Retry limit for connecting to the bootstrap server has been reached (
-ETIMEDOUT
).Common reason for this failure can be incorrect URI or PSK, or the server is unavailable (for example, temporary network issues). If this error persists, contact your carrier.
Library retries after next device reboot.
Failure to provision the PSK needed for the bootstrap procedure.
If the LTE link is up while the modem attempts to write keys to the modem, the error will be
-EACCES
. Verify that the application prioritizes theLWM2M_CARRIER_EVENT_LTE_LINK_UP
andLWM2M_CARRIER_EVENT_LTE_LINK_DOWN
events.Library retries after 24 hours.
Failure to read MSISDN or ICCID values (
-EFAULT
).ICCID is fetched from SIM, while MSISDN is received from the network for some carriers. If it has not been issued yet, the bootstrap process cannot proceed.
Library retries upon next network connection.
LWM2M_CARRIER_ERROR_FOTA_PKG
- This error indicates that the update package has been rejected. The integrity check has failed because of a wrong package sent from the server, or a wrong package received by client. Thevalue
field will have an error of typenrf_dfu_err_t
from the filenrfxlib/nrf_modem/include/nrf_socket.h
.LWM2M_CARRIER_ERROR_FOTA_PROTO
- This error indicates a protocol error. There might be unexpected HTTP header contents. The server might not support partial content requests.LWM2M_CARRIER_ERROR_FOTA_CONN
- This error indicates a connection problem. Either the server host name could not be resolved, or the remote server refused the connection.LWM2M_CARRIER_ERROR_FOTA_CONN_LOST
- This error indicates a loss of connection, or an unexpected closure of connection by the server.LWM2M_CARRIER_ERROR_FOTA_FAIL
- This error indicates a failure in applying a valid update. If this error persists, create a ticket in DevZone with the modem trace.LWM2M_CARRIER_ERROR_CONFIGURATION
- This error indicates that an illegal object configuration was detected.LWM2M_CARRIER_ERROR_INTERNAL
- This error indicates an irrecoverable error between the modem and carrier library. The LwM2M carrier library recovers only upon reboot.
Device objects
The following values that reflect the state of the device must be kept up to date by the application:
Available Power Sources
Power Source Voltage
Power Source Current
Battery Level
Battery Status
Memory Total
Error Code
Device Type (Defaults to
Smart Device
if not set)Software Version (Defaults to
LwM2M <libversion>
. For example,LwM2M 0.21.0
for release 0.21.0.)Hardware Version (Defaults to
1.0
if not set)Location
For example, the carrier device management platform can observe the battery level of your device.
The application uses the lwm2m_carrier_battery_level_set()
function to indicate the current battery level of the device to the carrier.