iwdg.c 306 B

12345678910111213141516
  1. #include "iwdg.h"
  2. #include "stm32f2xx_iwdg.h"
  3. void IWDG_Configuration(uint16_t ms)
  4. {
  5. IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable);
  6. IWDG_SetPrescaler(IWDG_Prescaler_256);// 256 min:8ms max:32768ms
  7. IWDG_SetReload(ms); // ms
  8. IWDG_Enable();
  9. }
  10. void IWDG_feed()
  11. {
  12. IWDG_ReloadCounter(); // ms
  13. }