:orphan: .. title:: BT_MESH_NODE_ID_TIMEOUT .. option:: CONFIG_BT_MESH_NODE_ID_TIMEOUT *Node Identity advertising timeout* Type: ``int`` 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. Direct dependencies =================== \ :option:`BT_MESH_GATT_PROXY ` && \ :option:`BT_CONN ` && \ :option:`BT_MESH ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 60 Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/mesh/Kconfig:125`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` → ``subsys/bluetooth/Kconfig:258`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Bluetooth Mesh support → GATT Proxy Service support .. parsed-literal:: config BT_MESH_NODE_ID_TIMEOUT int "Node Identity advertising timeout" range 1 60 default 60 depends on \ :option:`BT_MESH_GATT_PROXY ` && \ :option:`BT_CONN ` && \ :option:`BT_MESH ` && \ :option:`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.)*