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

#if IS_ENABLED(CONFIG_USE_WATCHDOG_ON_BOOT)
void watchdog_off(void);
#else
#define watchdog_off() { while (0); }
#endif

#endif /* WATCHDOG_H */