You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
700 B
39 lines
700 B
5 months ago
|
Import('RTT_ROOT')
|
||
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
cwd = os.path.join(str(Dir('#')), 'drivers')
|
||
|
|
||
|
# add the general drivers.
|
||
|
src = Split("""
|
||
|
board.c
|
||
|
""")
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
# add uart drivers.
|
||
|
if GetDepend('RT_USING_SERIAL'):
|
||
|
src += ['drv_usart.c']
|
||
|
|
||
|
if GetDepend('RT_USING_PIN'):
|
||
|
src += ['drv_gpio.c']
|
||
|
|
||
|
if GetDepend('RT_USING_ADC'):
|
||
|
src += ['drv_adc.c']
|
||
|
|
||
|
if GetDepend('RT_USING_HWTIMER'):
|
||
|
src += ['drv_hwtimer.c']
|
||
|
|
||
|
if GetDepend('RT_USING_RTC'):
|
||
|
src += ['drv_rtc.c']
|
||
|
|
||
|
if GetDepend('RT_USING_WDT'):
|
||
|
src += ['drv_iwdt.c']
|
||
|
|
||
|
if GetDepend('RT_USING_SPI'):
|
||
|
src += ['drv_spi.c']
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|