File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ void setup_gpio() {
80
80
esp_sleep_pd_config (ESP_PD_DOMAIN_VDDSDIO, ESP_PD_OPTION_ON);
81
81
gpio_pullup_dis (WAKEUP_GPIO);
82
82
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 );
84
84
esp_sleep_enable_gpio_wakeup ();
85
85
}
86
86
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ def test_sleep(dut):
35
35
dut .expect_exact ("Woke up from light sleep" )
36
36
dut .expect_exact ("Wakeup reason: {}" .format (capability ))
37
37
if capability == "timer" :
38
+ LOGGER .info ("Testing timer light sleep capability with low frequency" )
38
39
dut .write ("timer_freq_light" )
39
40
dut .expect_exact ("Woke up from light sleep" )
40
41
dut .expect_exact ("Wakeup reason: timer" )
You can’t perform that action at this time.
0 commit comments