4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 15:03:32 +08:00
2018-05-29 10:19:27 +08:00

28 lines
850 B
Python

# RT-Thread building script for component
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Split('''
Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c
''')
CPPPATH = [cwd + '/Device/ST/STM32F4xx/Include', cwd + '/Include']
CPPDEFINES = [rtconfig.PART_TYPE] #stm32f411xe
# add for startup script
if rtconfig.CROSS_TOOL == 'gcc':
folder = 'gcc'
src += ['Device/ST/STM32F4xx/Source/Templates/gcc/gcc_startup.s']
elif rtconfig.CROSS_TOOL == 'keil':
folder = 'arm'
elif rtconfig.CROSS_TOOL == 'iar':
folder = 'iar'
#Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f411xe.s
src += ['Device/ST/STM32F4xx/Source/Templates/' + folder + '/startup_' + rtconfig.PART_TYPE.lower() + '.s']
group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
Return('group')