From 651e5adbda2f20238e1bbe6534e3cde1e1b8a55c Mon Sep 17 00:00:00 2001 From: wuzhenghui Date: Fri, 1 Nov 2024 16:08:03 +0800 Subject: [PATCH] fix(esp_hw_support): only support power down flash after revison v1.0 on esp32p4 --- components/esp_hw_support/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_hw_support/Kconfig b/components/esp_hw_support/Kconfig index 06c595ccab..e29c37b242 100644 --- a/components/esp_hw_support/Kconfig +++ b/components/esp_hw_support/Kconfig @@ -71,7 +71,7 @@ menu "Hardware Settings" config ESP_SLEEP_POWER_DOWN_FLASH bool "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply" depends on !SPIRAM || ESP_LDO_RESERVE_PSRAM - depends on !(IDF_TARGET_ESP32P4 && (ESP32P4_REV_MIN_FULL >= 100)) + depends on !(IDF_TARGET_ESP32P4 && (ESP32P4_REV_MIN_FULL < 100)) default n help If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs