SConscript 1008 字节
Newer Older
S
Sherman 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Import('RTT_ROOT')
Import('rtconfig')
from building import *

cwd = GetCurrentDir()
src = []
group = []
CPPPATH = []
CPPDEFINES = ['SOC_R7FA6M4AF']

if rtconfig.CROSS_TOOL == 'iar':
    print("\nThe current project does not support iar build\n")
    Return('group')
elif rtconfig.CROSS_TOOL == 'gcc':
    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 += [cwd + '/fsp/src/r_ioport/r_ioport.c']

    if GetDepend(['RT_USING_SERIAL']):
        src += [cwd + '/fsp/src/r_sci_uart/r_sci_uart.c']

S
Sherman 已提交
23 24 25
    if GetDepend(['RT_USING_PIN']):
        src += [cwd + '/fsp/src/r_icu/r_icu.c']

S
Sherman 已提交
26 27 28 29 30 31 32
    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, CPPDEFINES = CPPDEFINES)
Return('group')