I'm using esp_sleep_enable_ext0_wakeup(GPIO32, 0)
to wakeup the ESP32. I also have attached an interrupt to GPIO32, with an ISR that simply implements a counter: void IRAM_ATTR its_raining_isr() { rain_counter++; }
.
My question isn't about the code, but rather about the behavior of the ESP32 in this situation: when in deep sleep and GPIO32 goes LOW, it will wakeup the ESP32, but will it also fire the ISR that I have attached to GPIO32? Thanks!