File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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" )
You can’t perform that action at this time.
0 commit comments