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; } } 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 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