I'm trying to wake up my ESP-32 WROVER-E from an external source using the esp_sleep_enable_ext0_wakeup() function: Code: Select all void go_to_sleep(uint32_t useconds) { esp_wifi_stop(); esp_sleep_enable_ext0_wakeup(GPIO_NUM_4, 0); esp_deep_sleep(useconds); } I call tha...