We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105bddf commit 8c6164eCopy full SHA for 8c6164e
tests/validation/sleep/sleep.ino
@@ -80,7 +80,7 @@ void setup_gpio() {
80
esp_sleep_pd_config(ESP_PD_DOMAIN_VDDSDIO, ESP_PD_OPTION_ON);
81
gpio_pullup_dis(WAKEUP_GPIO);
82
gpio_pulldown_en(WAKEUP_GPIO);
83
- gpio_wakeup_enable(WAKEUP_GPIO, GPIO_INTR_HIGH_LEVEL);
+ gpio_wakeup_enable(WAKEUP_GPIO, GPIO_INTR_LOW_LEVEL);
84
esp_sleep_enable_gpio_wakeup();
85
}
86
tests/validation/sleep/test_sleep.py
@@ -35,6 +35,7 @@ def test_sleep(dut):
35
dut.expect_exact("Woke up from light sleep")
36
dut.expect_exact("Wakeup reason: {}".format(capability))
37
if capability == "timer":
38
+ LOGGER.info("Testing timer light sleep capability with low frequency")
39
dut.write("timer_freq_light")
40
41
dut.expect_exact("Wakeup reason: timer")
0 commit comments