mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-03-03 21:25:28 +08:00
1. 增加PWM模块的配置kconfig代码 2. 调整目录结构,新增c28x文件夹,将原有tms320f28379的porting移动至c28x文件夹下,通用设备驱动移动至c28x/libraries下 3. 增加gpio驱动代码以及外部中断触发驱动代码 目前已经在tms320f28379上通过测试
17 lines
331 B
C
17 lines
331 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_CONFIG_H_
|
|
#define DRIVERS_DRV_CONFIG_H_
|
|
|
|
#include "config/pwm_config.h"
|
|
|
|
#endif /* DRIVERS_DRV_CONFIG_H_ */
|