From 4bf88860428787e87ac12eea933d520dc56081f1 Mon Sep 17 00:00:00 2001 From: Rahul Tank Date: Thu, 8 Dec 2022 11:06:49 +0530 Subject: [PATCH] Nimble: Support maximum number of connections to 9 on ESP32-C3 and ESP32-S3 --- components/bt/host/nimble/Kconfig.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/bt/host/nimble/Kconfig.in b/components/bt/host/nimble/Kconfig.in index b5c93a9be8..908d7d319e 100644 --- a/components/bt/host/nimble/Kconfig.in +++ b/components/bt/host/nimble/Kconfig.in @@ -64,9 +64,9 @@ config BT_NIMBLE_LOG_LEVEL config BT_NIMBLE_MAX_CONNECTIONS int "Maximum number of concurrent connections" - range 1 8 if (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32H4) + range 1 8 if IDF_TARGET_ESP32H4 range 1 2 if IDF_TARGET_ESP32C2 - range 1 9 if IDF_TARGET_ESP32 + range 1 9 if !SOC_ESP_NIMBLE_CONTROLLER default 3 if (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32H4) default 2 if IDF_TARGET_ESP32C2 depends on BT_NIMBLE_ENABLED