:orphan: .. title:: BT_MAX_PAIRED .. option:: CONFIG_BT_MAX_PAIRED *Maximum number of paired devices* Type: ``int`` Help ==== Maximum number of paired Bluetooth devices. The minimum (and default) number is 1. Direct dependencies =================== \ :option:`BT_CONN ` && \ :option:`BT_HCI_HOST ` && \ :option:`BT_HCI ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 0 if !\ :option:`BT_SMP ` - 1 Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/host/Kconfig:509`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` → ``subsys/bluetooth/Kconfig:239`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth .. parsed-literal:: config BT_MAX_PAIRED int "Maximum number of paired devices" range 0 128 default 0 if !\ :option:`BT_SMP ` default 1 depends on \ :option:`BT_CONN ` && \ :option:`BT_HCI_HOST ` && \ :option:`BT_HCI ` && \ :option:`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.)*