wdt.h 274 B

1234567891011121314151617181920
  1. #ifndef _WDT_H
  2. #define _WDT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. int wdt_set_heartbeat(unsigned int timeout);
  7. void wdt_stop(void);
  8. void wdt_start(void);
  9. void ark_wdt_keepalive(void);
  10. int wdt_init(void);
  11. void wdt_cpu_reboot(void);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif