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
846 B
25 lines
846 B
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
group = []
|
|
CPPPATH = []
|
|
|
|
if rtconfig.PLATFORM in ['iccarm']:
|
|
print("\nThe current project does not support IAR build\n")
|
|
Return('group')
|
|
elif rtconfig.PLATFORM in ['gcc', 'armclang']:
|
|
if GetOption('target') != 'mdk5':
|
|
src += Glob(cwd + '/fsp/src/bsp/mcu/all/*.c')
|
|
src += [cwd + '/fsp/src/bsp/cmsis/Device/RENESAS/Source/system.c']
|
|
src += [cwd + '/fsp/src/bsp/cmsis/Device/RENESAS/Source/startup.c']
|
|
src += Glob(cwd + '/fsp/src/r_*/*.c')
|
|
CPPPATH = [ cwd + '/arm/CMSIS_5/CMSIS/Core/Include',
|
|
cwd + '/fsp/inc',
|
|
cwd + '/fsp/inc/api',
|
|
cwd + '/fsp/inc/instances',]
|
|
|
|
group = DefineGroup('ra', src, depend = [''], CPPPATH = CPPPATH)
|
|
Return('group')
|
|
|