1 2 3 4 5 6 7 8 9 10
#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 */