Skip to content

Commit

Permalink
Merge branch 'bugfix/change_mblock_size_on_esp32c2' into 'master'
Browse files Browse the repository at this point in the history
change block1 size and num for esp ble controller

Closes BLE-157

See merge request espressif/esp-idf!20183
  • Loading branch information
jack0c committed Sep 19, 2022
2 parents 64129c2 + 9f940f1 commit 5aeba87
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/bt/host/nimble/Kconfig.in
Expand Up @@ -240,7 +240,8 @@ config BT_NIMBLE_SVC_GAP_APPEARANCE
menu "Memory Settings"
config BT_NIMBLE_MSYS_1_BLOCK_COUNT
int "MSYS_1 Block Count"
default 12
default 24 if SOC_ESP_NIMBLE_CONTROLLER
default 12 if !SOC_ESP_NIMBLE_CONTROLLER
help
MSYS is a system level mbuf registry. For prepare write & prepare
responses MBUFs are allocated out of msys_1 pool. For NIMBLE_MESH
Expand All @@ -249,7 +250,8 @@ menu "Memory Settings"

config BT_NIMBLE_MSYS_1_BLOCK_SIZE
int "MSYS_1 Block Size"
default 256
default 128 if SOC_ESP_NIMBLE_CONTROLLER
default 256 if !SOC_ESP_NIMBLE_CONTROLLER
help
Dynamic memory size of block 1

Expand Down

0 comments on commit 5aeba87

Please sign in to comment.