blob: e54f3fbf7360c62dda779015d0a9575d9eac16c0 [file] [log] [blame]
Stefan Reinauerde3206a2010-02-22 06:09:43 +00001#ifndef WATCHDOG_H
2#define WATCHDOG_H
3
Julius Wernercd49cce2019-03-05 16:53:33 -08004#if CONFIG(USE_WATCHDOG_ON_BOOT)
Stefan Reinauerde3206a2010-02-22 06:09:43 +00005void watchdog_off(void);
6#else
Lee Leahyf00e4462017-03-07 13:17:49 -08007#define watchdog_off() { while (0); }
Stefan Reinauerde3206a2010-02-22 06:09:43 +00008#endif
9
10#endif /* WATCHDOG_H */