aboutsummaryrefslogtreecommitdiffstats
path: root/src/stm32f4/watchdog.c
blob: 1f642616772b1ff56112c92d66c02fe6666a4918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Watchdog handler on STM32F4
//
// Copyright (C) 2019  Kevin O'Connor <kevin@koconnor.net>
//
// This file may be distributed under the terms of the GNU GPLv3 license.

#include "internal.h" // IWDG
#include "sched.h" // DECL_TASK

void
watchdog_reset(void)
{
    IWDG->KR = 0xAAAA;
}
DECL_TASK(watchdog_reset);

void
watchdog_init(void)
{
    IWDG->KR = 0x5555;
    IWDG->PR = 0;
    IWDG->RLR = 0x0FFF; // 512ms timeout
    IWDG->KR = 0xCCCC;
}
DECL_INIT(watchdog_init);