:orphan: .. title:: LWM2M_RD_CLIENT_MAX_RETRIES .. option:: CONFIG_LWM2M_RD_CLIENT_MAX_RETRIES *Specify maximum number of registration retries* Type: ``int`` Help ==== Specify maximum number of registration retries, before the application is notified about the network failure. Once application is notified, it's up to the application to handle this situation in a way appropriate for the specific use-case (for instance by waiting for LTE link to be re-established). Direct dependencies =================== \ :option:`LWM2M ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 5 Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/lib/lwm2m/Kconfig:130`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:89`` → ``subsys/net/lib/Kconfig:18`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Protocols → OMA LWM2M protocol stack .. parsed-literal:: config LWM2M_RD_CLIENT_MAX_RETRIES int "Specify maximum number of registration retries" default 5 depends on \ :option:`LWM2M ` && \ :option:`NETWORKING ` help Specify maximum number of registration retries, before the application is notified about the network failure. Once application is notified, it's up to the application to handle this situation in a way appropriate for the specific use-case (for instance by waiting for LTE link to be re-established). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*