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.
24 lines
474 B
24 lines
474 B
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd + '/../include']
|
|
group = []
|
|
src = []
|
|
|
|
if not GetDepend(['RT_USING_SERIAL']):
|
|
Return('group')
|
|
|
|
if GetDepend(['RT_USING_SMART']):
|
|
src += Glob('serial_tty.c')
|
|
|
|
if GetDepend(['RT_USING_SERIAL_V2']):
|
|
src += ['serial_v2.c']
|
|
else:
|
|
src += ['serial.c']
|
|
|
|
if GetDepend(['RT_USING_DM']):
|
|
src += ['serial_dm.c']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|
|
|