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

BT_MESH_LOW_POWER && BT_MESH && BT

(Includes any dependencies from ifs and menus.)

Default

  • 1

Kconfig definition

At <Zephyr>/subsys/bluetooth/mesh/Kconfig:490

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:34<Zephyr>/subsys/Kconfig:8<Zephyr>/subsys/bluetooth/Kconfig:258

Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Bluetooth Mesh support → Support for Low Power features

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.)