:orphan: .. title:: BT_MESH_LPN_RECV_DELAY .. option:: CONFIG_BT_MESH_LPN_RECV_DELAY *Receive delay requested by the local node* Type: ``int`` 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. Direct dependencies =================== \ :option:`BT_MESH_LOW_POWER ` && \ :option:`BT_MESH ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 100 Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/mesh/Kconfig:524`` 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 → Support for Low Power features .. parsed-literal:: config BT_MESH_LPN_RECV_DELAY int "Receive delay requested by the local node" range 10 255 default 100 depends on \ :option:`BT_MESH_LOW_POWER ` && \ :option:`BT_MESH ` && \ :option:`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.)*