:orphan: .. title:: CONFIG_BT_MESH_NODE_ID_TIMEOUT .. kconfig:: CONFIG_BT_MESH_NODE_ID_TIMEOUT CONFIG_BT_MESH_NODE_ID_TIMEOUT ############################## *Node Identity advertising timeout* Type: ``int`` Help ==== .. code-block:: none This option determines for how long the local node advertises using Node Identity. The given value is in seconds. The specification limits this to 60 seconds, and implies that to be the appropriate value as well, so just leaving this as the default is the safest option. Direct dependencies =================== \ :kconfig:`BT_MESH_GATT_PROXY ` && \ :kconfig:`BT_CONN ` && \ :kconfig:`BT_MESH ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 60 Kconfig definition ================== At ``/bluetooth/mesh/Kconfig:140`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:9`` → ``/bluetooth/Kconfig:193`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Bluetooth mesh support → GATT Proxy Service support .. code-block:: kconfig config BT_MESH_NODE_ID_TIMEOUT int "Node Identity advertising timeout" range 1 60 default 60 depends on BT_MESH_GATT_PROXY && BT_CONN && BT_MESH && BT help This option determines for how long the local node advertises using Node Identity. The given value is in seconds. The specification limits this to 60 seconds, and implies that to be the appropriate value as well, so just leaving this as the default is the safest option. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*