Merge branch 'bugfix/ulp_lp_mem_size_p4' into 'master'

fix(lp_core): fix kconfig not allowing using all of LP mem for lp core

Closes IDF-9627

See merge request espressif/esp-idf!29900
This commit is contained in:
Marius Vikhammer
2024-04-02 10:51:26 +08:00

View File

@@ -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.