Closed BojanJurca closed 2 years ago
One solution may be to increase the CPU frequency of ESP32.
The other solution is to disable the watchdog.
First
#include <soc/rtc_wdt.h>
then (in setup function)
void setup () { rtc_wdt_protect_off (); rtc_wdt_disable ();
If you are using an Esp32 oscilloscope as a stand alone solution this may be perfectly OK. But if it is just a part of your project, disabling the watchdog may not really be what you desire.
One solution may be to increase the CPU frequency of ESP32.
The other solution is to disable the watchdog.
First
then (in setup function)
If you are using an Esp32 oscilloscope as a stand alone solution this may be perfectly OK. But if it is just a part of your project, disabling the watchdog may not really be what you desire.