2022-01-02 09:14:03 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
|
|
|
|
# add the general drivers.
|
|
|
|
src = Split("""
|
|
|
|
""")
|
|
|
|
|
|
|
|
# add pin drivers.
|
|
|
|
if GetDepend('RT_USING_PIN'):
|
|
|
|
src += ['drv_gpio.c']
|
|
|
|
|
|
|
|
# add usart drivers.
|
|
|
|
if GetDepend(['RT_USING_SERIAL']):
|
|
|
|
src += ['drv_usart.c']
|
|
|
|
|
|
|
|
# add i2c drivers.
|
|
|
|
if GetDepend(['RT_USING_I2C', 'RT_USING_I2C_BITOPS']):
|
|
|
|
if GetDepend('BSP_USING_I2C0') or GetDepend('BSP_USING_I2C1') or GetDepend('BSP_USING_I2C2') or GetDepend('BSP_USING_I2C3'):
|
|
|
|
src += ['drv_soft_i2c.c']
|
|
|
|
|
|
|
|
# add spi drivers.
|
|
|
|
if GetDepend('RT_USING_SPI'):
|
|
|
|
src += ['drv_spi.c']
|
|
|
|
|
|
|
|
# add spi flash drivers.
|
|
|
|
if GetDepend('RT_USING_SFUD'):
|
2022-01-25 16:37:19 +08:00
|
|
|
src += ['drv_spi_flash.c', 'drv_spi.c']
|
2022-01-02 09:14:03 +08:00
|
|
|
|
2022-06-28 19:43:00 +08:00
|
|
|
# add wdt drivers.
|
2022-01-25 16:37:19 +08:00
|
|
|
if GetDepend('RT_USING_WDT'):
|
|
|
|
src += ['drv_wdt.c']
|
|
|
|
|
2022-06-28 19:43:00 +08:00
|
|
|
# add rtc drivers.
|
2022-01-25 16:37:19 +08:00
|
|
|
if GetDepend('RT_USING_RTC'):
|
|
|
|
src += ['drv_rtc.c']
|
|
|
|
|
2022-06-28 19:43:00 +08:00
|
|
|
# add timer drivers.
|
2022-01-25 16:37:19 +08:00
|
|
|
if GetDepend('RT_USING_HWTIMER'):
|
|
|
|
src += ['drv_hwtimer.c']
|
|
|
|
|
2022-06-28 19:43:00 +08:00
|
|
|
# add adc drivers.
|
2022-01-25 16:37:19 +08:00
|
|
|
if GetDepend('RT_USING_ADC'):
|
|
|
|
src += ['drv_adc.c']
|
|
|
|
|
|
|
|
path = [cwd]
|
2022-01-02 09:14:03 +08:00
|
|
|
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
|
|
|
|
|
|
|
Return('group')
|