:orphan: .. title:: CONFIG_BT_MESH_LPN_SCAN_LATENCY .. kconfig:: CONFIG_BT_MESH_LPN_SCAN_LATENCY CONFIG_BT_MESH_LPN_SCAN_LATENCY ############################### *Latency for enabling scanning* Type: ``int`` Help ==== .. code-block:: none Latency in milliseconds that it takes to enable scanning. This is in practice how much time in advance before the Receive Window that scanning is requested to be enabled. Direct dependencies =================== \ :kconfig:`BT_MESH_LOW_POWER ` && \ :kconfig:`BT_MESH ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 10 Kconfig definition ================== At ``/bluetooth/mesh/Kconfig:612`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:9`` → ``/bluetooth/Kconfig:193`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Bluetooth mesh support → Support for Low Power features .. code-block:: kconfig config BT_MESH_LPN_SCAN_LATENCY int "Latency for enabling scanning" range 0 50 default 10 depends on BT_MESH_LOW_POWER && BT_MESH && BT help Latency in milliseconds that it takes to enable scanning. This is in practice how much time in advance before the Receive Window that scanning is requested to be enabled. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*