Wayne Lin 541426a72a [nuvoton] Support M031 Series.
1. Import M031 porting.
2. Support numaker-m032ki BSP.
2021-05-17 16:23:41 +08:00

26 lines
683 B
Python

import rtconfig
Import('RTT_ROOT')
from building import *
# get current directory
cwd = GetCurrentDir()
# The set of source files associated with this SConscript file.
src = Split("""
Nuvoton/M031/Source/system_M031Series.c
""")
# add for startup script
if rtconfig.CROSS_TOOL == 'gcc':
src = src + ['Nuvoton/M031/Source/GCC/startup_M031Series.S']
elif rtconfig.CROSS_TOOL == 'keil':
src = src + ['Nuvoton/M031/Source/ARM/startup_M031Series.s']
elif rtconfig.CROSS_TOOL == 'iar':
src = src + ['Nuvoton/M031/Source/IAR/startup_M031Series.s']
path = [cwd + '/Nuvoton/M031/Include',]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
Return('group')