From da9521aef3c6f1e57419526d610576f2cfadbd13 Mon Sep 17 00:00:00 2001 From: zlq Date: Wed, 9 Oct 2024 16:02:04 +0800 Subject: [PATCH] fix(pmu): modify parameter for P4 ECO2-VO1 --- components/esp_hw_support/port/esp32p4/pmu_param.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_hw_support/port/esp32p4/pmu_param.c b/components/esp_hw_support/port/esp32p4/pmu_param.c index c1c8896f37..cea81b02fc 100644 --- a/components/esp_hw_support/port/esp32p4/pmu_param.c +++ b/components/esp_hw_support/port/esp32p4/pmu_param.c @@ -153,7 +153,7 @@ const pmu_hp_system_digital_param_t * pmu_hp_system_digital_param_default(pmu_hp .dbias_init = 1, \ .slp_mem_xpd = 0, \ .slp_logic_xpd = 0, \ - .slp_mem_dbias = 0, \ + .slp_mem_dbias = 8, /*bit[3] control ext_ldo_1 xpd for ECO2*/ \ .slp_logic_dbias = 0, \ }, \ .regulator1 = { \ @@ -173,7 +173,7 @@ const pmu_hp_system_digital_param_t * pmu_hp_system_digital_param_default(pmu_hp .regulator0 = { \ .slp_mem_xpd = 0, \ .slp_logic_xpd = 0, \ - .slp_mem_dbias = 0, \ + .slp_mem_dbias = 8, /*bit[3] control ext_ldo_1 xpd for ECO2*/ \ .slp_logic_dbias = 0, \ }, \ .regulator1 = { \