drv_pwm.h 447 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2006-2023, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Email: opensource_embedded@phytium.com.cn
  7. *
  8. * Change Logs:
  9. * Date Author Notes
  10. * 2023-10-18 zhangyan first version
  11. *
  12. */
  13. #ifndef __DRV_PWM_H__
  14. #define __DRV_PWM_H__
  15. #include <rtdevice.h>
  16. #ifdef __cplusplus
  17. extern "C"
  18. {
  19. #endif
  20. int rt_hw_pwm_init(void);
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif /* __DRV_CAN_H__ */