:orphan: .. title:: BT_SETTINGS_CCC_LAZY_LOADING .. option:: CONFIG_BT_SETTINGS_CCC_LAZY_LOADING *Load CCC values from settings when peer connects* Type: ``bool`` Help ==== Load Client Configuration Characteristic setting right after a bonded device connects. Disabling this option will increase memory usage as CCC values for all bonded devices will be loaded when calling settings_load. Direct dependencies =================== \ :option:`BT_SETTINGS ` && \ :option:`BT_HCI_HOST ` && \ :option:`BT_HCI ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/host/Kconfig:198`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` → ``subsys/bluetooth/Kconfig:239`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Store Bluetooth state and configuration persistently .. parsed-literal:: config BT_SETTINGS_CCC_LAZY_LOADING bool "Load CCC values from settings when peer connects" default y depends on \ :option:`BT_SETTINGS ` && \ :option:`BT_HCI_HOST ` && \ :option:`BT_HCI ` && \ :option:`BT ` help Load Client Configuration Characteristic setting right after a bonded device connects. Disabling this option will increase memory usage as CCC values for all bonded devices will be loaded when calling settings_load. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*