:orphan: .. title:: LWM2M_QUEUE_MODE_UPTIME .. option:: CONFIG_LWM2M_QUEUE_MODE_UPTIME *Specify time the LWM2M client should stay online in queue mode.* Type: ``int`` Help ==== This config specifies time (in seconds) the device should stay online after sending a message to the server. Note, that LWM2M specification recommends this to be CoAP MAX_TRANSMIT_WAIT parameter (which defaults to 93 seconds, see RFC 7252), it does not forbid other values though. Direct dependencies =================== \ :option:`LWM2M ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 93 Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/lib/lwm2m/Kconfig:101`` 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_QUEUE_MODE_UPTIME int "Specify time the LWM2M client should stay online in queue mode." default 93 depends on \ :option:`LWM2M ` && \ :option:`NETWORKING ` help This config specifies time (in seconds) the device should stay online after sending a message to the server. Note, that LWM2M specification recommends this to be CoAP MAX_TRANSMIT_WAIT parameter (which defaults to 93 seconds, see RFC 7252), it does not forbid other values though. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*