iwdg.h 318 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * @file iwdg.h
  3. * @author chenjun (chenjun@radareye.com.cn)
  4. * @brief
  5. * @version 0.1
  6. * @date 2022-04-06
  7. *
  8. * @copyright Copyright (c) 2022
  9. *
  10. */
  11. #ifndef __IWDG_H__
  12. #define __IWDG_H__
  13. #include "n32g45x.h"
  14. #define WATCHDOG_TIME (2000)
  15. #define IWDG_MS(x) (x/6.4)
  16. void iwdg_init(void);
  17. #endif