mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-27 05:27:24 +08:00
fddc522d9c
* [bsp][ch32v307]添加了 pwm 驱动
39 lines
807 B
Python
39 lines
807 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
path = [cwd]
|
|
|
|
if GetDepend('SOC_RISCV_FAMILY_CH32'):
|
|
|
|
if GetDepend('BSP_USING_GPIO'):
|
|
src += ['drv_gpio.c']
|
|
|
|
if GetDepend('BSP_USING_UART'):
|
|
src += ['drv_usart.c']
|
|
|
|
if GetDepend('BSP_USING_ADC'):
|
|
src += ['drv_adc.c']
|
|
|
|
if GetDepend('BSP_USING_DAC'):
|
|
src += ['drv_dac.c']
|
|
|
|
if GetDepend('BSP_USING_SOFT_I2C'):
|
|
src += ['drv_soft_i2c.c']
|
|
|
|
if GetDepend('BSP_USING_RTC'):
|
|
src += ['drv_rtc.c']
|
|
|
|
if GetDepend('BSP_USING_IWDT'):
|
|
src += ['drv_iwdt.c']
|
|
|
|
if GetDepend('BSP_USING_CAN'):
|
|
src += ['drv_can.c']
|
|
|
|
if GetDepend('BSP_USING_PWM'):
|
|
src += ['drv_pwm.c']
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
|
|
|
Return('group')
|