#ifndef STA_WATCHDOG_HPP #define STA_WATCHDOG_HPP #include #ifdef STA_WATCHDOG_ENABLE #include // Watchdog task flags // #define STA_WATCHDOG_FLAG_HEARTBEAT 0x00001000U namespace sta { void startWatchdogTimer(); void notifyWatchdog(uint32_t flags); } // namespace sta #endif // STA_WATCHDOG_ENABLE #endif // STA_WATCHDOG_HPP