From 1fe9c33ea25ff17c1d69e71c27b319ade467f2db Mon Sep 17 00:00:00 2001 From: Zhao Wei Liang Date: Tue, 18 Mar 2025 16:04:53 +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 328438d9d4..610671cc11 100644 --- a/components/bt/controller/esp32c6/Kconfig.in +++ b/components/bt/controller/esp32c6/Kconfig.in @@ -485,7 +485,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 d324d442ed..a9ab730af1 100644 --- a/components/bt/controller/esp32h2/Kconfig.in +++ b/components/bt/controller/esp32h2/Kconfig.in @@ -476,7 +476,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