:orphan: .. title:: CONFIG_BT_DEVICE_NAME_MAX .. kconfig:: CONFIG_BT_DEVICE_NAME_MAX CONFIG_BT_DEVICE_NAME_MAX ######################### *Maximum size in bytes for device name* Type: ``int`` Help ==== .. code-block:: none Bluetooth device name storage size. Storage can be up to 248 bytes long (excluding NULL termination). Direct dependencies =================== \ :kconfig:`BT_DEVICE_NAME_DYNAMIC ` && \ :kconfig:`BT_HCI_HOST ` && \ :kconfig:`BT_HCI ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 28 Kconfig definition ================== At ``/bluetooth/host/Kconfig:519`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:9`` → ``/bluetooth/Kconfig:180`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Allow to set Bluetooth device name on runtime .. code-block:: kconfig config BT_DEVICE_NAME_MAX int "Maximum size in bytes for device name" range 2 248 default 28 depends on BT_DEVICE_NAME_DYNAMIC && BT_HCI_HOST && BT_HCI && 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.)*