:orphan: .. title:: BT_MESH_LPN_ESTABLISHMENT .. option:: CONFIG_BT_MESH_LPN_ESTABLISHMENT *Perform Friendship establishment using low power* Type: ``bool`` Help ==== Perform the Friendship establishment using low power, with the help of a reduced scan duty cycle. The downside of this is that the node may miss out on messages intended for it until it has successfully set up Friendship with a Friend node. Direct dependencies =================== \ :option:`BT_MESH_LOW_POWER ` && \ :option:`BT_MESH ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/mesh/Kconfig:463`` 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_ESTABLISHMENT bool "Perform Friendship establishment using low power" default y depends on \ :option:`BT_MESH_LOW_POWER ` && \ :option:`BT_MESH ` && \ :option:`BT ` help Perform the Friendship establishment using low power, with the help of a reduced scan duty cycle. The downside of this is that the node may miss out on messages intended for it until it has successfully set up Friendship with a Friend node. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*