some extra PSRAM infos

unfortunately n7a in esp-idf 4.4.x
This commit is contained in:
Frank
2026-03-26 20:48:38 +01:00
parent c0cbe89af4
commit 15c11d94f8

View File

@@ -759,6 +759,16 @@ void WLED::setup()
#elif CONFIG_SPIRAM_OCCUPY_NO_HOST #elif CONFIG_SPIRAM_OCCUPY_NO_HOST
DEBUG_PRINTLN(F("PSRAM host: none")); DEBUG_PRINTLN(F("PSRAM host: none"));
#endif #endif
#if ESP_IDF_VERSION_MAJOR > 4
#ifdef CONFIG_SOC_PSRAM_DMA_CAPABLE
USER_PRINTLN(F("PSRAM is DMA capable."));
#else
USER_PRINTLN(F("PSRAM does not support DMA."));
#endif
#ifdef CONFIG_SOC_MEMSPI_FLASH_PSRAM_INDEPENDENT
DEBUG_PRINTLN(F("PSRAM speed is independant from flash."));
#endif
#endif
USER_PRINTLN(); USER_PRINTLN();
} }
#else #else