drv_wdt.h 352 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2019-05-06 sundm75 first version
  9. */
  10. #ifndef WDT_H_
  11. #define WDT_H_
  12. struct wdt_driver
  13. {
  14. unsigned long in_use;
  15. void* priv;
  16. };
  17. int rt_hw_wdt_init(void);
  18. #endif /* WDT_H_ */