:orphan: .. title:: BT_MESH_LPN_MIN_QUEUE_SIZE .. option:: 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 =================== \ :option:`BT_MESH_LOW_POWER ` && \ :option:`BT_MESH ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== At ``/bluetooth/mesh/Kconfig:521`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``/Kconfig:9`` → ``/bluetooth/Kconfig:325`` 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.)*