From cbc632bd0483b3a5706f1d0421cee7a856e6e4dd Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Thu, 28 Mar 2024 16:30:12 +0800 Subject: [PATCH] fix(lp_core): fix kconfig not allowing using all of LP mem for P4 lp core --- components/ulp/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ulp/Kconfig b/components/ulp/Kconfig index 29b1e5ff00..ff6f236867 100644 --- a/components/ulp/Kconfig +++ b/components/ulp/Kconfig @@ -32,8 +32,8 @@ menu "Ultra Low Power (ULP) Co-processor" depends on ULP_COPROC_ENABLED default 512 if IDF_TARGET_ESP32 default 4096 if !IDF_TARGET_ESP32 - range 32 8176 if !IDF_TARGET_ESP32C6 - range 32 16352 if IDF_TARGET_ESP32C6 + range 32 8176 if IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3 + range 32 16352 if IDF_TARGET_ESP32C5 || IDF_TARGET_ESP32C6 range 32 32768 if IDF_TARGET_ESP32P4 help Bytes of memory to reserve for ULP Co-processor firmware & data.