blob: e54f3fbf7360c62dda779015d0a9575d9eac16c0 [file] [log] [blame]
#ifndef WATCHDOG_H
#define WATCHDOG_H
#if CONFIG(USE_WATCHDOG_ON_BOOT)
void watchdog_off(void);
#else
#define watchdog_off() { while (0); }
#endif
#endif /* WATCHDOG_H */