From d2858847b278c76bb7c88fae4bf40d4f91bd5a50 Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Wed, 6 Aug 2025 14:56:04 +0530 Subject: [PATCH] fix(esp_psram): make SPIRAM_USE_MEMMAP depend on ESP32 target --- components/esp_psram/Kconfig.spiram.common | 1 + 1 file changed, 1 insertion(+) diff --git a/components/esp_psram/Kconfig.spiram.common b/components/esp_psram/Kconfig.spiram.common index ea16849a52..b04cacbd92 100644 --- a/components/esp_psram/Kconfig.spiram.common +++ b/components/esp_psram/Kconfig.spiram.common @@ -69,6 +69,7 @@ choice SPIRAM_USE return SPI RAM pointers. config SPIRAM_USE_MEMMAP + depends on IDF_TARGET_ESP32 bool "Integrate RAM into memory map" config SPIRAM_USE_CAPS_ALLOC bool "Make RAM allocatable using heap_caps_malloc(..., MALLOC_CAP_SPIRAM)"