drv_wdt.h 435 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2006-2022, Synwit Technology Co.,Ltd.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2023-03-14 wcx1024979076 first version
  9. */
  10. #ifndef __DRV_WDT_H__
  11. #define __DRV_WDT_H__
  12. #include "board.h"
  13. #include "bflb_wdg.h"
  14. #include "bflb_clock.h"
  15. #include <rtthread.h>
  16. #include "rtdevice.h"
  17. #include <rthw.h>
  18. int rt_hw_wdt_init(void);
  19. #endif /* __DRV_WDT_H__ */