drv_pwm.h 416 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2006-2023, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2023-03-12 wcx1024979076 first version
  9. */
  10. #ifndef __DRV_PWM_H__
  11. #define __DRV_PWM_H__
  12. #include "bflb_pwm_v2.h"
  13. #include "bflb_clock.h"
  14. #include "board.h"
  15. #include "hardware/pwm_v2_reg.h"
  16. int rt_hw_pwm_init(void);
  17. #endif /* __DRV_PWM_H__ */