From 2a04abafa0241e77956d11c5df0407e3b3fe7aec Mon Sep 17 00:00:00 2001 From: Xudong Zheng <7pkvm5aw@slicealias.com> Date: Thu, 2 Jan 2025 18:24:39 -0500 Subject: [PATCH] boards: esp32c3_supermini: increase board heap and stack The heap and stack are now consistent with other ESP32-C3 boards in tree. This is necessary for Bluetooth to not crash on boot. Signed-off-by: Xudong Zheng <7pkvm5aw@slicealias.com> --- boards/others/esp32c3_supermini/Kconfig | 2 +- boards/others/esp32c3_supermini/esp32c3_supermini_defconfig | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/boards/others/esp32c3_supermini/Kconfig b/boards/others/esp32c3_supermini/Kconfig index 02cddb3b85c..d7b9f494bc9 100644 --- a/boards/others/esp32c3_supermini/Kconfig +++ b/boards/others/esp32c3_supermini/Kconfig @@ -5,4 +5,4 @@ config HEAP_MEM_POOL_ADD_SIZE_BOARD int - default 2048 + default 4096 diff --git a/boards/others/esp32c3_supermini/esp32c3_supermini_defconfig b/boards/others/esp32c3_supermini/esp32c3_supermini_defconfig index c5ef331aa76..bf6c07714fa 100644 --- a/boards/others/esp32c3_supermini/esp32c3_supermini_defconfig +++ b/boards/others/esp32c3_supermini/esp32c3_supermini_defconfig @@ -1,6 +1,8 @@ # Copyright (c) 2024 Arrel Neumiller # SPDX-License-Identifier: Apache-2.0 +CONFIG_MAIN_STACK_SIZE=2048 + CONFIG_CONSOLE=y CONFIG_SERIAL=y CONFIG_UART_CONSOLE=y