mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-25 10:39:32 +08:00
* [bsp/renesas] add bsp ra4e2-ek * bsp: Renesas ra4e2-ek bsp support the nano * fix bsp and SOC_SERIES_R7FA4E2 * remove file R7FA4E2B9.svd 工程未使用此文件, 此文件在renesas bsp中已有一份,此文件可以删除 bsp\renesas\ra4e2-eco\script\R7FA4E2B9.svd
26 lines
846 B
Python
26 lines
846 B
Python
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')
|