From f0bf1e6bf8713fb5b89f1e275aee60e40a254156 Mon Sep 17 00:00:00 2001 From: Wang Mengyang Date: Tue, 14 Jan 2025 14:30:58 +0800 Subject: [PATCH] change(bt): Set default value for BT_BLUEDROID_ESP_COEX_VSC conditionally - Set default value of BT_BLUEDROID_ESP_COEX_VSC to n if software coexistence is not required, in host-controller combined Bluetooth stack configuration. --- components/bt/host/bluedroid/Kconfig.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/bt/host/bluedroid/Kconfig.in b/components/bt/host/bluedroid/Kconfig.in index 6cacf29367..d9fa589123 100644 --- a/components/bt/host/bluedroid/Kconfig.in +++ b/components/bt/host/bluedroid/Kconfig.in @@ -43,7 +43,8 @@ config BT_BLUEDROID_MEM_DEBUG config BT_BLUEDROID_ESP_COEX_VSC bool "Enable Espressif Vendor-specific HCI commands for coexist status configuration" depends on BT_BLUEDROID_ENABLED - default y + default y if (ESP_COEX_SW_COEXIST_ENABLE || BT_CONTROLLER_DISABLED) + default n help Enable Espressif Vendor-specific HCI commands for coexist status configuration