From c4d62abfe9be0ca8cb8c3ff3d12c4a1145a91255 Mon Sep 17 00:00:00 2001 From: Zhao Wei Liang Date: Tue, 18 Mar 2025 16:04:24 +0800 Subject: [PATCH] fix(ble): fixed hci driver stack protection fault issue on ESP32-C6 (cherry picked from commit ec4a1324f50b39eb9c162add1b2b4b9ddf2d7177) Co-authored-by: zwl --- components/bt/controller/esp32c6/Kconfig.in | 2 +- components/bt/controller/esp32h2/Kconfig.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/bt/controller/esp32c6/Kconfig.in b/components/bt/controller/esp32c6/Kconfig.in index fa5bcd247c..0835740eec 100644 --- a/components/bt/controller/esp32c6/Kconfig.in +++ b/components/bt/controller/esp32c6/Kconfig.in @@ -108,7 +108,7 @@ menu "HCI Config" config BT_LE_HCI_TRANS_TASK_STACK_SIZE int "HCI transport task stack size" depends on !BT_LE_HCI_INTERFACE_USE_RAM - default 1024 + default 2048 help This configures stack size of hci transport task diff --git a/components/bt/controller/esp32h2/Kconfig.in b/components/bt/controller/esp32h2/Kconfig.in index 8b3262ef37..c168e6b12a 100644 --- a/components/bt/controller/esp32h2/Kconfig.in +++ b/components/bt/controller/esp32h2/Kconfig.in @@ -108,7 +108,7 @@ menu "HCI Config" config BT_LE_HCI_TRANS_TASK_STACK_SIZE int "HCI transport task stack size" depends on !BT_LE_HCI_INTERFACE_USE_RAM - default 1024 + default 2048 help This configures stack size of hci transport task