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.
17 lines
397 B
17 lines
397 B
12 months ago
|
Import('RTT_ROOT')
|
||
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
# The set of source files associated with this SConscript file.
|
||
|
src = Split("""
|
||
|
""")
|
||
|
CPPPATH = [cwd + '/StdPeriphDriver/inc', cwd + '/CMSIS/Include']
|
||
|
|
||
|
src += ['Startup/startup_ARMCM0.s']
|
||
|
src += Glob('StdPeriphDriver/*.c')
|
||
|
|
||
|
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|