From aa4ca80115e87aab5bddd64a7aea5c9db70d15ae Mon Sep 17 00:00:00 2001 From: Zhao Wei Liang Date: Tue, 18 Mar 2025 16:04:09 +0800 Subject: [PATCH] feat(ble): change whitelist max size to 31 on ESP32-C6 (cherry picked from commit 2b435687b0771c05554cd1150068f996b112dbec) 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 0835740eec..70165672f6 100644 --- a/components/bt/controller/esp32c6/Kconfig.in +++ b/components/bt/controller/esp32c6/Kconfig.in @@ -491,7 +491,7 @@ config BT_LE_CRYPTO_STACK_MBEDTLS config BT_LE_WHITELIST_SIZE int "BLE white list size" - range 1 15 + range 1 31 default 12 depends on !BT_NIMBLE_ENABLED diff --git a/components/bt/controller/esp32h2/Kconfig.in b/components/bt/controller/esp32h2/Kconfig.in index c168e6b12a..d270ca4913 100644 --- a/components/bt/controller/esp32h2/Kconfig.in +++ b/components/bt/controller/esp32h2/Kconfig.in @@ -482,7 +482,7 @@ config BT_LE_CRYPTO_STACK_MBEDTLS config BT_LE_WHITELIST_SIZE int "BLE white list size" - range 1 15 + range 1 31 default 12 depends on !BT_NIMBLE_ENABLED