Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[nrf noup] Align heap configuration to Wi-Fi needs #385

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion config/nrfconnect/chip-module/Kconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,13 @@ config HEAP_MEM_POOL_SIZE
default 80000 if CHIP_WIFI

config CHIP_MALLOC_SYS_HEAP_SIZE
default 28672 if CHIP_WIFI
default 30720 if CHIP_WIFI
default 8192 if NET_L2_OPENTHREAD

# We use sys_heap based allocators, so make sure we don't reserve unused libc heap anyway
config COMMON_LIBC_MALLOC_ARENA_SIZE
default -1

config NVS_LOOKUP_CACHE_SIZE
default 512

Expand Down
Loading