PHiLIP
wdt.h
Go to the documentation of this file.
1 /*
2  * Copyright 2020 Kevin Weiss for HAW Hamburg
3  *
4  * This file is subject to the terms and conditions of the MIT License. See the
5  * file LICENSE in the top level directory for more details.
6  * SPDX-License-Identifier: MIT
7  */
8 
19 #ifndef WDT_H_
20 #define WDT_H_
21 
22 /* Function prototypes ********************************************************/
26 void init_wdt();
27 
31 void reset_wdt();
32 
33 #endif /* WDT_H_ */
34 
void reset_wdt()
Resets the watchdog timer.
Definition: wdt.c:45
void init_wdt()
Initializes the watchdog timer.
Definition: wdt.c:35