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.
30 lines
778 B
30 lines
778 B
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
# get current directory
|
|
cwd = GetCurrentDir()
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
src = Split("""
|
|
CME_M7/system_cmem7.c
|
|
""")
|
|
|
|
# add for startup script
|
|
if rtconfig.PLATFORM in ['gcc']:
|
|
src += ['CME_M7/startup/gcc/startup_CME_M7.c']
|
|
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
|
|
src += ['CME_M7/startup/arm/startup_cmem7.s']
|
|
elif rtconfig.PLATFORM in ['iccarm']:
|
|
print('================ERROR============================')
|
|
print('Not support IAR yet!')
|
|
print('=================================================')
|
|
exit(0)
|
|
|
|
path = [cwd + '/CME_M7']
|
|
|
|
path += [cwd + '/CMSIS/Include']
|
|
|
|
group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = path)
|
|
|
|
Return('group')
|
|
|