:orphan: .. title:: OS_MGMT_RESET_MS .. option:: CONFIG_OS_MGMT_RESET_MS *Delay before executing reset command (ms)* Type: ``int`` Help ==== When a reset command is received, the system waits this many milliseconds before performing the reset. This delay allows time for the mcumgr response to be delivered. Direct dependencies =================== \ :option:`MCUMGR_CMD_OS_MGMT ` && \ :option:`MCUMGR ` *(Includes any dependencies from ifs and menus.)* Default ======= - 250 Kconfig definition ================== .. highlight:: kconfig At ``subsys/mgmt/mcumgr/Kconfig:188`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:35`` → ``subsys/mgmt/Kconfig:9`` Menu path: (Top) → Sub Systems and OS Services → Device Management → mcumgr Support → Command Handlers → Enable mcumgr handlers for OS management .. parsed-literal:: config OS_MGMT_RESET_MS int "Delay before executing reset command (ms)" default 250 depends on \ :option:`MCUMGR_CMD_OS_MGMT ` && \ :option:`MCUMGR ` help When a reset command is received, the system waits this many milliseconds before performing the reset. This delay allows time for the mcumgr response to be delivered. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*