From 11505164c505b4b2c20b4e8733578aea90626743 Mon Sep 17 00:00:00 2001 From: Jiacheng Guo Date: Mon, 17 May 2021 23:08:19 +0800 Subject: [PATCH] [esp32] increase default stack size (#6869) The added operational credentials feature requires more stack size because of the mbedtls api calls. --- config/esp32/components/chip/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/esp32/components/chip/Kconfig b/config/esp32/components/chip/Kconfig index c4c92daf30cca4..713560b7aa2786 100644 --- a/config/esp32/components/chip/Kconfig +++ b/config/esp32/components/chip/Kconfig @@ -334,7 +334,7 @@ menu "CHIP Device Layer" config CHIP_TASK_STACK_SIZE int "CHIP Task Stack Size" range 0 65535 - default 6144 + default 8192 help The size (in bytes) of the CHIP task stack.