From 2252a4166a93ebaa58707241ca5ac904c23a5056 Mon Sep 17 00:00:00 2001 From: wuzhenghui Date: Sun, 27 Apr 2025 19:27:24 +0800 Subject: [PATCH 1/3] fix(esp_hw_support): fix esp32p4 may get stuck when entering deepsleep --- components/hal/esp32p4/include/hal/pmu_ll.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/hal/esp32p4/include/hal/pmu_ll.h b/components/hal/esp32p4/include/hal/pmu_ll.h index 16ec05fb57..46f3f5902e 100644 --- a/components/hal/esp32p4/include/hal/pmu_ll.h +++ b/components/hal/esp32p4/include/hal/pmu_ll.h @@ -678,9 +678,11 @@ FORCE_INLINE_ATTR void pmu_ll_set_dcdc_switch_force_power_down(pmu_dev_t *hw, bo FORCE_INLINE_ATTR void pmu_ll_set_dcdc_en(pmu_dev_t *hw, bool en) { if (en) { + hw->dcm_ctrl.done_force = 0; hw->dcm_ctrl.on_req = 1; } else { hw->dcm_ctrl.off_req = 1; + hw->dcm_ctrl.done_force = 1; } } From 375d675cdc46ec710be1f6d4217f2c033ceb86e3 Mon Sep 17 00:00:00 2001 From: Xiao Xufeng Date: Fri, 16 May 2025 15:15:56 +0800 Subject: [PATCH 2/3] https_server: use larger partition table in the example --- examples/protocols/https_server/simple/sdkconfig.defaults | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/protocols/https_server/simple/sdkconfig.defaults b/examples/protocols/https_server/simple/sdkconfig.defaults index a9595bf0c1..41ef408703 100644 --- a/examples/protocols/https_server/simple/sdkconfig.defaults +++ b/examples/protocols/https_server/simple/sdkconfig.defaults @@ -1 +1,2 @@ CONFIG_ESP_HTTPS_SERVER_ENABLE=y +CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y From c771e4508e912eceaf58ed5fc1c49f0a99d06550 Mon Sep 17 00:00:00 2001 From: Xiao Xufeng Date: Mon, 19 May 2025 14:11:19 +0800 Subject: [PATCH 3/3] iperf: increased app partition size in example --- examples/wifi/iperf/sdkconfig.ci.esp32p4_with_extconn | 1 - examples/wifi/iperf/sdkconfig.defaults | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/wifi/iperf/sdkconfig.ci.esp32p4_with_extconn b/examples/wifi/iperf/sdkconfig.ci.esp32p4_with_extconn index f675f0a416..e8be3d83fb 100644 --- a/examples/wifi/iperf/sdkconfig.ci.esp32p4_with_extconn +++ b/examples/wifi/iperf/sdkconfig.ci.esp32p4_with_extconn @@ -3,4 +3,3 @@ # CONFIG_IDF_TARGET="esp32p4" CONFIG_ESP_HOST_WIFI_ENABLED=y -CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y diff --git a/examples/wifi/iperf/sdkconfig.defaults b/examples/wifi/iperf/sdkconfig.defaults index 17478fdc8c..dabdb86d7d 100644 --- a/examples/wifi/iperf/sdkconfig.defaults +++ b/examples/wifi/iperf/sdkconfig.defaults @@ -12,3 +12,5 @@ CONFIG_LWIP_TCPIP_TASK_PRIO=23 CONFIG_IPERF_TRAFFIC_TASK_PRIORITY=23 CONFIG_IPERF_REPORT_TASK_PRIORITY=24 CONFIG_COMPILER_OPTIMIZATION_PERF=y + +CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y