From bd31e7fe43d7d4126f23b35a4280eae3ad48d367 Mon Sep 17 00:00:00 2001 From: Ravi Dondaputi Date: Mon, 21 Apr 2025 18:42:27 +0530 Subject: [PATCH] snippets: wifi-enterprise: Resize data heap to fix RAM overflow Inclusion of CONFIG_WIFI_SHELL_RUNTIME_CERTIFICATES causes build time RAM overflow issues. Decrease NRF_WIFI_DATA_HEAP_SIZE to accommodate the RUNTIME_CERTIFICATES feature. Signed-off-by: Ravi Dondaputi --- snippets/wifi-enterprise/wifi-enterprise.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/snippets/wifi-enterprise/wifi-enterprise.conf b/snippets/wifi-enterprise/wifi-enterprise.conf index cf7754989ba5..dbac5ee63874 100644 --- a/snippets/wifi-enterprise/wifi-enterprise.conf +++ b/snippets/wifi-enterprise/wifi-enterprise.conf @@ -14,3 +14,4 @@ CONFIG_TLS_CREDENTIALS=y CONFIG_TLS_CREDENTIALS_SHELL_CRED_BUF_SIZE=8192 CONFIG_TLS_MAX_CREDENTIALS_NUMBER=6 CONFIG_HEAP_MEM_POOL_ADD_SIZE_TLS_CRED_SHELL=9000 +CONFIG_NRF_WIFI_DATA_HEAP_SIZE=100000