28 lines
496 B
Python
28 lines
496 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']):
|
|
if GetDepend(['RT_USING_SERIAL_V2']):
|
|
src += ['drv_usart_v2.c']
|
|
else:
|
|
src += ['drv_usart.c']
|
|
|
|
src += ['drv_common.c']
|
|
|
|
path = [cwd]
|
|
path += [cwd + '/config']
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
|
|
|
Return('group')
|