44 lines
770 B
Python
44 lines
770 B
Python
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_usart.c']
|
|
|
|
if GetDepend(['RT_USING_I2C']):
|
|
src += ['drv_i2c.c']
|
|
|
|
if GetDepend(['RT_USING_SPI']):
|
|
src += ['drv_spi.c']
|
|
|
|
if GetDepend(['RT_USING_HWTIMER']):
|
|
src += ['drv_hwtimer.c']
|
|
|
|
if GetDepend(['RT_USING_ADC']):
|
|
src += ['drv_adc.c']
|
|
|
|
if GetDepend(['RT_USING_WDT']):
|
|
src += ['drv_wdt.c']
|
|
|
|
if GetDepend(['RT_USING_RTC']):
|
|
src += ['drv_rtc.c']
|
|
|
|
if GetDepend(['RT_USING_PWM']):
|
|
src += ['drv_pwm.c']
|
|
|
|
|
|
path = [cwd]
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
|
|
|
Return('group')
|