-
Hi There, I tried to use disable_irq()/enable_irq() on ESP32 S2. Unfortunately, once disable_irq() is called, the backend reboots. I found in the Discussions it could be cause by no interrupt handler is available. How could I test an interrupt handler exists ? Thanks and regards, Eric. |
Beta Was this translation helpful? Give feedback.
Answered by
jimmo
Oct 26, 2023
Replies: 1 comment 3 replies
-
It probably reboots because the watchdog fires. This means you're leaving interrupts disabled for too long. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Tico06
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It probably reboots because the watchdog fires. This means you're leaving interrupts disabled for too long.