From 0cbb92c2c8d26395c7aae2385b87ec331f5be50e Mon Sep 17 00:00:00 2001 From: Sylvio Alves Date: Mon, 11 Nov 2024 08:27:38 -0300 Subject: [PATCH] boards: heltec: fix kconfig cpu entry name Minimum heap pool should be always set for the board in order to enable internal drivers/subsystems to work. It is currently not defined for APPCPU due to typo in board's Kconfig, possibly causing build failures. Fixes #81218 Signed-off-by: Sylvio Alves --- boards/heltec/heltec_wireless_stick_lite_v3/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/heltec/heltec_wireless_stick_lite_v3/Kconfig b/boards/heltec/heltec_wireless_stick_lite_v3/Kconfig index b84cf42142c..02f8c7bdbd3 100644 --- a/boards/heltec/heltec_wireless_stick_lite_v3/Kconfig +++ b/boards/heltec/heltec_wireless_stick_lite_v3/Kconfig @@ -4,4 +4,4 @@ config HEAP_MEM_POOL_ADD_SIZE_BOARD int default 4096 if BOARD_HELTEC_WIRELESS_STICK_LITE_V3_ESP32S3_PROCPU - default 256 if BOARD_HELTEC_WIRELESS_STICK_LITE_V3_ESP32S3_PROCPU + default 256 if BOARD_HELTEC_WIRELESS_STICK_LITE_V3_ESP32S3_APPCPU