fix(sleep): fix_wrong_sleep_param_for_lp_memory_retention (v5.3)

This commit is contained in:
chaijie@espressif.com
2024-09-10 10:55:06 +08:00
committed by zhoupeng
parent a5ed03eb85
commit 3497691fc5
2 changed files with 2 additions and 2 deletions

View File

@@ -291,7 +291,7 @@ const pmu_hp_system_retention_param_t * pmu_hp_system_retention_param_default(pm
.lp_pad_slp_sel = 0, \
.bod_source_sel = 0, \
.vddbat_mode = 0, \
.mem_dslp = 1, \
.mem_dslp = 0, \
.peri_pd_en = 0, \
}, \
.clk_power = { \

View File

@@ -296,7 +296,7 @@ typedef struct {
.bod_source_sel = 0, \
.vddbat_mode = 0, \
.peri_pd_en = ((pd_flags) & PMU_SLEEP_PD_LP_PERIPH) ? 1 : 0, \
.mem_dslp = 1 \
.mem_dslp = 0 \
}, \
.clk_power = { \
.xpd_lppll = 0,\