summaryrefslogtreecommitdiffstats
path: root/src/include/watchdog.h
blob: 98d6d5186518262dc8ffe29733d4244a2834b6e7 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef WATCHDOG_H
#define WATCHDOG_H

#if CONFIG_USE_WATCHDOG_ON_BOOT == 1
void watchdog_off(void);
#else
#define watchdog_off()
#endif

#endif /* WATCHDOG_H */