summaryrefslogtreecommitdiff
path: root/core/cortex-m/watchdog.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/cortex-m/watchdog.c')
-rw-r--r--core/cortex-m/watchdog.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/core/cortex-m/watchdog.c b/core/cortex-m/watchdog.c
index fe8ba776bf..ff876912d1 100644
--- a/core/cortex-m/watchdog.c
+++ b/core/cortex-m/watchdog.c
@@ -39,12 +39,3 @@ void watchdog_trace(uint32_t excep_lr, uint32_t excep_sp)
timer_print_info();
task_print_list();
}
-
-/* Low priority task to reload the watchdog */
-void watchdog_task(void)
-{
- while (1) {
- msleep(WATCHDOG_RELOAD_MS);
- watchdog_reload();
- }
-}