18 lines
271 B
Python
18 lines
271 B
Python
|
Import('RTT_ROOT')
|
||
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
# add the general drivers.
|
||
|
src = Split("""
|
||
|
""")
|
||
|
|
||
|
# src += ['drv_common.c']
|
||
|
|
||
|
path = [cwd + '/include']
|
||
|
|
||
|
group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = path)
|
||
|
|
||
|
Return('group')
|