11 lines
170 B
C
11 lines
170 B
C
|
#ifndef PART_WATCHDOG_H
|
||
|
#define PART_WATCHDOG_H
|
||
|
|
||
|
#if USE_WATCHDOG_ON_BOOT == 1
|
||
|
void watchdog_off(void);
|
||
|
#else
|
||
|
#define watchdog_off()
|
||
|
#endif
|
||
|
|
||
|
#endif /* PART_WATCHDOG_H */
|