/** * @file iwdg.h * @author chenjun (chenjun@radareye.com.cn) * @brief * @version 0.1 * @date 2022-04-06 * * @copyright Copyright (c) 2022 * */ #ifndef __IWDG_H__ #define __IWDG_H__ #include "n32g45x.h" #define WATCHDOG_TIME (2000) #define IWDG_MS(x) (x/6.4) void iwdg_init(void); #endif