:orphan: .. title:: CONFIG_BT_CTLR_WL_SIZE .. kconfig:: CONFIG_BT_CTLR_WL_SIZE CONFIG_BT_CTLR_WL_SIZE ###################### *LE Controller-based Privacy White List size* Type: ``int`` Help ==== .. code-block:: none Set the size of the White List for LE Controller-based Privacy. On nRF5x-based controllers, the hardware imposes a limit of 8 devices. On OpenISA-based controllers, the hardware imposes a limit of 8 devices. Direct dependencies =================== \ :kconfig:`BT_CTLR_FILTER ` && \ :kconfig:`BT_CTLR ` && \ :kconfig:`BT_HCI ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 8 Kconfig definition ================== At ``/subsys/bluetooth/controller/Kconfig:387`` Included via ``/Kconfig:8`` → ``/Kconfig.zephyr:42`` → ``/subsys/Kconfig:9`` → ``/subsys/bluetooth/Kconfig:324`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Bluetooth Controller .. code-block:: kconfig config BT_CTLR_WL_SIZE int "LE Controller-based Privacy White List size" range 1 8 if SOC_COMPATIBLE_NRF || SOC_OPENISA_RV32M1_RISCV32 range 1 16 if !(SOC_COMPATIBLE_NRF || SOC_OPENISA_RV32M1_RISCV32) default 8 depends on BT_CTLR_FILTER && BT_CTLR && BT_HCI && BT help Set the size of the White List for LE Controller-based Privacy. On nRF5x-based controllers, the hardware imposes a limit of 8 devices. On OpenISA-based controllers, the hardware imposes a limit of 8 devices. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*