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

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

#endif /* WATCHDOG_H */