mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 20:53:26 +02:00
13 lines
242 B
C++
13 lines
242 B
C++
#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
|