7c122cca25
1. 增加PWM模块的配置kconfig代码 2. 调整目录结构,新增c28x文件夹,将原有tms320f28379的porting移动至c28x文件夹下,通用设备驱动移动至c28x/libraries下 3. 增加gpio驱动代码以及外部中断触发驱动代码 目前已经在tms320f28379上通过测试
27 lines
526 B
C
27 lines
526 B
C
/*
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2022-09-24 qiyu first version
|
|
*/
|
|
|
|
#ifndef DRIVERS_DRV_PWM_H_
|
|
#define DRIVERS_DRV_PWM_H_
|
|
#include <board.h>
|
|
#include "rtdevice.h"
|
|
|
|
#ifdef BSP_USING_PWM
|
|
struct c28x_pwm
|
|
{
|
|
struct rt_device_pwm pwm_device;
|
|
volatile struct EPWM_REGS *pwm_regs;
|
|
const char *name;
|
|
};
|
|
|
|
int c28x_pwm_init(void);
|
|
#endif /* BSP_USING_PWM */
|
|
#endif /* DRIVERS_DRV_PWM_H_ */
|