:orphan: .. title:: CONFIG_BT_MAX_PAIRED .. kconfig:: CONFIG_BT_MAX_PAIRED CONFIG_BT_MAX_PAIRED #################### *Maximum number of paired devices* Type: ``int`` Help ==== .. code-block:: none Maximum number of paired Bluetooth devices. The minimum (and default) number is 1. Direct dependencies =================== \ :kconfig:`BT_CONN ` && \ :kconfig:`BT_HCI_HOST ` && \ :kconfig:`BT_HCI ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 0 if !\ :kconfig:`BT_SMP ` - 1 Kconfig definition ================== At ``/bluetooth/host/Kconfig:456`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:9`` → ``/bluetooth/Kconfig:174`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth .. code-block:: kconfig config BT_MAX_PAIRED int "Maximum number of paired devices" range 0 128 default 0 if !BT_SMP default 1 depends on BT_CONN && BT_HCI_HOST && BT_HCI && BT help Maximum number of paired Bluetooth devices. The minimum (and default) number is 1. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*