Increase task wdt timeout for ESP32/ESP32-C3 (#2096)

This commit is contained in:
Stefan Agner
2021-08-10 11:10:52 +02:00
committed by GitHub
parent 6a2f0f5143
commit f94c221a9a
4 changed files with 37 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
#include "esphome/core/application.h"
#ifdef ARDUINO_ARCH_ESP8266
namespace esphome {
static const char *const TAG = "app_esp8266";
void ICACHE_RAM_ATTR HOT Application::feed_wdt_arch_() { ESP.wdtFeed(); }
} // namespace esphome
#endif