Skip to content

Commit 7f46f61

Browse files
author
Jiang Jiang Jian
committed
Merge branch 'fix/fix_esp32p4_stuck_in_pd_ana_v5.5' into 'release/v5.5'
fix(esp_hw_support): fix esp32p4 may get stuck when entering deepsleep (v5.5) See merge request espressif/esp-idf!39283
2 parents 1f4fbd0 + c771e45 commit 7f46f61

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

components/hal/esp32p4/include/hal/pmu_ll.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -678,9 +678,11 @@ FORCE_INLINE_ATTR void pmu_ll_set_dcdc_switch_force_power_down(pmu_dev_t *hw, bo
678678
FORCE_INLINE_ATTR void pmu_ll_set_dcdc_en(pmu_dev_t *hw, bool en)
679679
{
680680
if (en) {
681+
hw->dcm_ctrl.done_force = 0;
681682
hw->dcm_ctrl.on_req = 1;
682683
} else {
683684
hw->dcm_ctrl.off_req = 1;
685+
hw->dcm_ctrl.done_force = 1;
684686
}
685687
}
686688

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
CONFIG_ESP_HTTPS_SERVER_ENABLE=y
2+
CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y

examples/wifi/iperf/sdkconfig.ci.esp32p4_with_extconn

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
#
44
CONFIG_IDF_TARGET="esp32p4"
55
CONFIG_ESP_HOST_WIFI_ENABLED=y
6-
CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y

examples/wifi/iperf/sdkconfig.defaults

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ CONFIG_LWIP_TCPIP_TASK_PRIO=23
1212
CONFIG_IPERF_TRAFFIC_TASK_PRIORITY=23
1313
CONFIG_IPERF_REPORT_TASK_PRIORITY=24
1414
CONFIG_COMPILER_OPTIMIZATION_PERF=y
15+
16+
CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y

0 commit comments

Comments
 (0)