:orphan: .. title:: BT_DEVICE_NAME_MAX .. option:: CONFIG_BT_DEVICE_NAME_MAX *Maximum size in bytes for device name* Type: ``int`` Help ==== Bluetooth device name storage size. Storage can be up to 248 bytes long (excluding NULL termination). Direct dependencies =================== \ :option:`BT_DEVICE_NAME_DYNAMIC ` && \ :option:`BT_HCI_HOST ` && \ :option:`BT_HCI ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 28 Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/host/Kconfig:572`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` → ``subsys/bluetooth/Kconfig:239`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Allow to set Bluetooth device name on runtime .. parsed-literal:: config BT_DEVICE_NAME_MAX int "Maximum size in bytes for device name" range 2 248 default 28 depends on \ :option:`BT_DEVICE_NAME_DYNAMIC ` && \ :option:`BT_HCI_HOST ` && \ :option:`BT_HCI ` && \ :option:`BT ` help Bluetooth device name storage size. Storage can be up to 248 bytes long (excluding NULL termination). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*