:orphan: .. title:: CONFIG_BT_MESH_LPN_MIN_QUEUE_SIZE .. kconfig:: CONFIG_BT_MESH_LPN_MIN_QUEUE_SIZE CONFIG_BT_MESH_LPN_MIN_QUEUE_SIZE ################################# *Minimum size of acceptable friend queue (MinQueueSizeLog)* Type: ``int`` Help ==== .. code-block:: none The MinQueueSizeLog field is defined as log_2(N), where N is the minimum number of maximum size Lower Transport PDUs that the Friend node can store in its Friend Queue. As an example, MinQueueSizeLog value 1 gives N = 2, and value 7 gives N = 128. Direct dependencies =================== \ :kconfig:`BT_MESH_LOW_POWER ` && \ :kconfig:`BT_MESH ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== At ``/bluetooth/mesh/Kconfig:569`` 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_MIN_QUEUE_SIZE int "Minimum size of acceptable friend queue (MinQueueSizeLog)" range 1 7 default 1 depends on BT_MESH_LOW_POWER && BT_MESH && BT help The MinQueueSizeLog field is defined as log_2(N), where N is the minimum number of maximum size Lower Transport PDUs that the Friend node can store in its Friend Queue. As an example, MinQueueSizeLog value 1 gives N = 2, and value 7 gives N = 128. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*