:orphan: .. title:: CONFIG_BT_MESH_LPN_RECV_DELAY .. kconfig:: CONFIG_BT_MESH_LPN_RECV_DELAY CONFIG_BT_MESH_LPN_RECV_DELAY ############################# *Receive delay requested by the local node* Type: ``int`` Help ==== .. code-block:: none The ReceiveDelay is the time between the Low Power node sending a request and listening for a response. This delay allows the Friend node time to prepare the response. The value is in units of milliseconds. Direct dependencies =================== \ :kconfig:`BT_MESH_LOW_POWER ` && \ :kconfig:`BT_MESH ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 100 Kconfig definition ================== At ``/bluetooth/mesh/Kconfig:579`` 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_RECV_DELAY int "Receive delay requested by the local node" range 10 255 default 100 depends on BT_MESH_LOW_POWER && BT_MESH && BT help The ReceiveDelay is the time between the Low Power node sending a request and listening for a response. This delay allows the Friend node time to prepare the response. The value is in units of milliseconds. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*