rt-thread/bsp/ra6m4-cpk/drivers/SConscript

53 lines
1.1 KiB
Python
Raw Normal View History

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
# add the general drivers.
src = Split("""
drv_common.c
""")
if GetDepend(['BSP_USING_UART']):
if GetDepend(['RT_USING_SERIAL_V2']):
src += ['drv_usart_v2.c']
else:
print("\nThe current project does not support serial-v1\n")
Return('group')
if GetDepend(['BSP_USING_GPIO']):
2021-10-18 14:50:00 +08:00
src += ['drv_gpio.c']
if GetDepend(['BSP_USING_WDT']):
2021-10-18 14:50:00 +08:00
src += ['drv_wdt.c']
2021-10-22 15:12:56 +08:00
if GetDepend(['BSP_USING_ONCHIP_RTC']):
src += ['drv_rtc.c']
if GetDepend(['BSP_USING_I2C', 'RT_USING_I2C_BITOPS']):
2021-10-18 14:50:00 +08:00
if GetDepend('BSP_USING_I2C0') or GetDepend('BSP_USING_I2C1'):
src += ['drv_soft_i2c.c']
if GetDepend(['BSP_USING_SPI']):
2021-10-27 11:28:55 +08:00
src += ['drv_spi.c']
if GetDepend(['BSP_USING_ADC']):
2021-10-27 11:28:55 +08:00
src += ['drv_adc.c']
if GetDepend(['BSP_USING_DAC']):
2021-10-27 11:28:55 +08:00
src += ['drv_dac.c']
if GetDepend(['BSP_USING_ONCHIP_FLASH']):
src += ['drv_flash.c']
if GetDepend(['BSP_USING_PWM']):
src += ['drv_pwm.c']
path = [cwd]
path += [cwd + '/config']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
Return('group')