Replies: 1 comment
-
Yea, this is one reason that the watchdog is disabled in debug builds. In theory, it can work though. ESP8266 always has the watchdog enabled, so the host has to deal with it. Here's where it does it, by calling |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I like to have some form of watchdog functionality in my app code that ensures that certain tasks keep running. The esp-idf has some convenient watchdog functionality where one can create a "user" watchdog and then "feed" it in one's code. Only problem is, if I set a breakpoint my code no longer feeds the watchdog and a reset results. Is there a good place to hook into the breakpoint functionality so the watchdogs can be disabled when stopping and re-enabled when running again? Or a different suggestion?
Beta Was this translation helpful? Give feedback.
All reactions