User_Wdt.h 205 B

12345678910111213141516
  1. #ifndef _H_USER_WDT_H_
  2. #define _H_USER_WDT_H_
  3. #include "main.h"
  4. enum
  5. {
  6. WatchDog_DisEnable =0,
  7. WatchDog_Enable,
  8. };
  9. void User_watchDog_init(bool value);
  10. void User_Feed_watchDog(void);
  11. #endif