mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
fix(bt): Add default BLE controller funcs reset enable
(cherry picked from commit 7c1cb4b296)
Co-authored-by: zhanghaipeng <zhanghaipeng@espressif.com>
This commit is contained in:
@@ -2,6 +2,15 @@ config BT_CTRL_MODE_EFF
|
||||
int
|
||||
default 1
|
||||
|
||||
config BT_CTRL_CHECK_CONFIG_EFF
|
||||
int
|
||||
default 1
|
||||
help
|
||||
Marker that controller Kconfig is active (always set in sdkconfig).
|
||||
Must not be unset in normal IDF builds. Controller-only integrations
|
||||
that do not export this symbol rely on esp_bt.h to apply compile-time
|
||||
defaults for missing BLE feature CONFIG_* names.
|
||||
|
||||
config BT_CTRL_BLE_MAX_ACT
|
||||
int "BLE Max Instances"
|
||||
default 6
|
||||
|
||||
@@ -1866,6 +1866,11 @@ esp_err_t esp_bt_controller_init(esp_bt_controller_config_t *cfg)
|
||||
|
||||
ESP_LOGI(BT_LOG_TAG, "BT controller compile version [%s]", btdm_controller_get_compile_version());
|
||||
|
||||
#ifndef CONFIG_BT_CTRL_CHECK_CONFIG_EFF
|
||||
ESP_LOGW(BT_LOG_TAG, "CONFIG_BT_CTRL_CHECK_CONFIG_EFF is not defined; "
|
||||
"using compile-time default BLE controller feature options");
|
||||
#endif
|
||||
|
||||
#if (CONFIG_BT_CTRL_RUN_IN_FLASH_ONLY)
|
||||
ESP_LOGI(BT_LOG_TAG,"Put all controller code in flash");
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user