Skip to content

Commit

Permalink
Nimble: Support maximum number of connections to 9 on ESP32-C3 and ES…
Browse files Browse the repository at this point in the history
…P32-S3
  • Loading branch information
rahult-github committed Dec 11, 2022
1 parent 23dda41 commit 7d68a35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/bt/host/nimble/Kconfig.in
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ 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_ESP32H2)
range 1 8 if IDF_TARGET_ESP32H4
range 1 2 if IDF_TARGET_ESP32C2
range 1 9 if IDF_TARGET_ESP32
default 3 if (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32H2)
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
help
Expand Down

0 comments on commit 7d68a35

Please sign in to comment.