2021-02-11 16:18:33 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
|
|
|
|
# add the general drivers.
|
|
|
|
src = Split("""
|
|
|
|
""")
|
|
|
|
|
|
|
|
if GetDepend(['RT_USING_PIN']):
|
|
|
|
src += ['drv_gpio.c']
|
|
|
|
|
|
|
|
if GetDepend(['RT_USING_SERIAL']):
|
|
|
|
src += ['drv_uart.c']
|
2023-01-09 10:14:23 +08:00
|
|
|
|
2021-02-11 16:18:33 +08:00
|
|
|
if GetDepend(['RT_USING_PWM']):
|
|
|
|
src += ['drv_pwm.c']
|
|
|
|
|
|
|
|
if GetDepend(['RT_USING_SPI']):
|
|
|
|
src += ['drv_spi.c']
|
|
|
|
|
2021-02-26 17:32:33 +08:00
|
|
|
if GetDepend(['RT_USING_I2C']):
|
|
|
|
src += ['drv_i2c.c']
|
|
|
|
|
2021-03-20 17:14:55 +08:00
|
|
|
if GetDepend(['BSP_USING_ONCHIP_RTC']):
|
|
|
|
src += ['drv_rtc.c']
|
2021-02-11 16:18:33 +08:00
|
|
|
|
|
|
|
if GetDepend(['BSP_USING_WDT']):
|
|
|
|
src += ['drv_wdt.c']
|
2023-01-09 10:14:23 +08:00
|
|
|
|
2021-02-11 16:18:33 +08:00
|
|
|
path = [cwd]
|
|
|
|
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
|
|
|
|
|
|
|
Return('group')
|