aboutsummaryrefslogtreecommitdiff
path: root/src/include/part/watchdog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/part/watchdog.h')
-rw-r--r--src/include/part/watchdog.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/part/watchdog.h b/src/include/part/watchdog.h
new file mode 100644
index 0000000000..4374f3060d
--- /dev/null
+++ b/src/include/part/watchdog.h
@@ -0,0 +1,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 */