drv_wdt.h 468 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2006-2024, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2024-05-24 QT-one first version
  9. */
  10. #ifndef __DRV_WDT_H__
  11. #define __DRV_WDT_H__
  12. #include <rtthread.h>
  13. #include <rthw.h>
  14. #ifdef RT_USING_DEVICE
  15. #include <rtdevice.h>
  16. #endif
  17. #include "drv_common.h"
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif /* __DRV_WDT_H__ */