: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 ==== 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 ================== .. highlight:: kconfig At ``subsys/bluetooth/mesh/Kconfig:514`` 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_MIN_QUEUE_SIZE int "Minimum size of acceptable friend queue (MinQueueSizeLog)" range 1 7 default 1 depends on \ :option:`BT_MESH_LOW_POWER ` && \ :option:`BT_MESH ` && \ :option:`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.)*