| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * Copyright (c) 2006-2018, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2018-05-07 aozima the first version
- */
- #ifndef __DRV_PWM_H_INCLUDE__
- #define __DRV_PWM_H_INCLUDE__
- #include <rtthread.h>
- #include <rtdevice.h>
- #define PWM_CMD_ENABLE (128 + 0)
- #define PWM_CMD_DISABLE (128 + 1)
- #define PWM_CMD_SET (128 + 2)
- #define PWM_CMD_GET (128 + 3)
- struct rt_pwm_configuration
- {
- rt_uint32_t channel; /* 0-n */
- rt_uint32_t period; /* unit:ns 1ns~4.29s:1Ghz~0.23hz */
- rt_uint32_t pulse; /* unit:ns (pulse<=period) */
- };
- struct rt_device_pwm;
- struct rt_pwm_ops
- {
- rt_err_t (*control)(struct rt_device_pwm *device, int cmd, void *arg);
- };
- struct rt_device_pwm
- {
- struct rt_device parent;
- const struct rt_pwm_ops *ops;
- };
- rt_err_t rt_device_pwm_register(struct rt_device_pwm *device, const char *name, const struct rt_pwm_ops *ops, const void *user_data);
- rt_err_t rt_pwm_enable(struct rt_device_pwm *device, int channel);
- rt_err_t rt_pwm_disable(struct rt_device_pwm *device, int channel);
- rt_err_t rt_pwm_set(struct rt_device_pwm *device, int channel, rt_uint32_t period, rt_uint32_t pulse);
- #endif /* __DRV_PWM_H_INCLUDE__ */
|