File tree Expand file tree Collapse file tree 5 files changed +14
-12
lines changed
components/soc/esp32c5/include/soc Expand file tree Collapse file tree 5 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -1239,23 +1239,23 @@ config SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH
12391239 int
12401240 default 12
12411241
1242- config SOC_PM_SUPPORT_BT_WAKEUP
1242+ config SOC_PM_SUPPORT_WIFI_WAKEUP
12431243 bool
12441244 default y
12451245
1246- config SOC_PM_SUPPORT_EXT1_WAKEUP
1246+ config SOC_PM_SUPPORT_BEACON_WAKEUP
12471247 bool
12481248 default y
12491249
1250- config SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN
1250+ config SOC_PM_SUPPORT_BT_WAKEUP
12511251 bool
12521252 default y
12531253
1254- config SOC_PM_SUPPORT_WIFI_WAKEUP
1254+ config SOC_PM_SUPPORT_EXT1_WAKEUP
12551255 bool
12561256 default y
12571257
1258- config SOC_PM_SUPPORT_BEACON_WAKEUP
1258+ config SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN
12591259 bool
12601260 default y
12611261
@@ -1331,14 +1331,14 @@ config SOC_PM_PAU_REGDMA_LINK_CONFIGURABLE
13311331 bool
13321332 default y
13331333
1334- config SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE
1335- bool
1336- default y
1337-
13381334config SOC_PM_PAU_REGDMA_LINK_IDX_WIFIMAC
13391335 int
13401336 default 4
13411337
1338+ config SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE
1339+ bool
1340+ default y
1341+
13421342config SOC_CLK_RC_FAST_SUPPORT_CALIBRATION
13431343 bool
13441344 default y
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ examples/wifi/itwt:
5757examples/wifi/power_save :
5858 << : *wifi_depends_default
5959 disable :
60- - if : (SOC_WIFI_SUPPORTED != 1) or (IDF_TARGET == "esp32c5")
60+ - if : (SOC_WIFI_SUPPORTED != 1)
6161 disable_test :
6262 - if : IDF_TARGET == "esp32c61"
6363 temporary : true
Original file line number Diff line number Diff line change 1- | Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-C61 | ESP32-S2 | ESP32-S3 |
2- | ----------------- | ----- | -------- | -------- | -------- | --------- | -------- | -------- |
1+ | Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32- C6 | ESP32-C61 | ESP32-S2 | ESP32-S3 |
2+ | ----------------- | ----- | -------- | -------- | -------- | -------- | -------- - | -------- | -------- |
33
44# Wifi Power Save Example
55
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ menu "Example Configuration"
101101
102102 choice EXAMPLE_MIN_CPU_FREQ
103103 prompt "Minimum CPU frequency"
104+ default EXAMPLE_MIN_CPU_FREQ_48M if IDF_TARGET_ESP32C5
104105 default EXAMPLE_MIN_CPU_FREQ_10M
105106 depends on PM_ENABLE
106107 help
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ def _run_test(dut: Dut) -> None:
4646@pytest .mark .esp32c3
4747@pytest .mark .esp32s3
4848@pytest .mark .esp32c6
49+ @pytest .mark .esp32c5
4950@pytest .mark .wifi_ap
5051def test_wifi_power_save (dut : Dut ) -> None :
5152 _run_test (dut )
You can’t perform that action at this time.
0 commit comments