a really simple sketch to reproduce the problem.
#include <Task.h>
TaskManager Tasks;
void setup() {
Serial.begin(74880);
Serial.setDebugOutput(true);
Serial.println();
Serial.println(ESP.getResetReason());
Serial.println(ESP.getResetInfo());
while (true) {
Serial.print('.');
if ((i % 80) == 0)
Serial.println();
//wdt_reset();
delay(500);
}
}
void loop() {
}
normally we don't want to mess around with WDT unless it's really absolutely necessary, the user might make other use with it.
a really simple sketch to reproduce the problem.
normally we don't want to mess around with WDT unless it's really absolutely necessary, the user might make other use with it.