Skip to content

Commit 8c6164e

Browse files
committed
fix
1 parent 105bddf commit 8c6164e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/validation/sleep/sleep.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ void setup_gpio() {
8080
esp_sleep_pd_config(ESP_PD_DOMAIN_VDDSDIO, ESP_PD_OPTION_ON);
8181
gpio_pullup_dis(WAKEUP_GPIO);
8282
gpio_pulldown_en(WAKEUP_GPIO);
83-
gpio_wakeup_enable(WAKEUP_GPIO, GPIO_INTR_HIGH_LEVEL);
83+
gpio_wakeup_enable(WAKEUP_GPIO, GPIO_INTR_LOW_LEVEL);
8484
esp_sleep_enable_gpio_wakeup();
8585
}
8686

tests/validation/sleep/test_sleep.py

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ def test_sleep(dut):
3535
dut.expect_exact("Woke up from light sleep")
3636
dut.expect_exact("Wakeup reason: {}".format(capability))
3737
if capability == "timer":
38+
LOGGER.info("Testing timer light sleep capability with low frequency")
3839
dut.write("timer_freq_light")
3940
dut.expect_exact("Woke up from light sleep")
4041
dut.expect_exact("Wakeup reason: timer")

0 commit comments

Comments
 (0)