mirror of
https://github.com/esphome/esphome.git
synced 2025-01-22 21:41:56 +01: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
|