19 lines
289 B
C
19 lines
289 B
C
|
|
/*
|
||
|
|
* watchdog.h
|
||
|
|
*
|
||
|
|
* Created on: Jan 9, 2026
|
||
|
|
* Author: cc
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef MCU_DRIVER_INC_WATCHDOG_H_
|
||
|
|
#define MCU_DRIVER_INC_WATCHDOG_H_
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
#include "ch564.h"
|
||
|
|
|
||
|
|
void WDT_Init(void);
|
||
|
|
void WDT_Feed(void);
|
||
|
|
void WDT_Reinit(void);
|
||
|
|
|
||
|
|
#endif /* MCU_DRIVER_INC_WATCHDOG_H_ */
|