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

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

#endif /* PART_WATCHDOG_H */