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.
25 lines
409 B
25 lines
409 B
10 months ago
|
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']
|
||
|
|
||
|
src += ['drv_common.c']
|
||
|
|
||
|
path = [cwd]
|
||
|
path += [cwd + '/config']
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
||
|
|
||
|
Return('group')
|