rt-thread/bsp/stm32f429-disco/Libraries/SConscript

33 lines
1.0 KiB
Python
Raw Normal View History

2016-08-19 00:35:30 +08:00
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("""
CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c
2016-08-19 00:35:30 +08:00
""")
src += Glob('STM32F4xx_HAL_Driver/Src/*.c')
2016-08-19 00:35:30 +08:00
#add for startup script
2016-08-19 00:35:30 +08:00
if rtconfig.CROSS_TOOL == 'gcc':
src = src + ['CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f429xx.s']
2016-08-19 00:35:30 +08:00
elif rtconfig.CROSS_TOOL == 'keil':
src = src + ['CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f429xx.s']
2016-08-19 00:35:30 +08:00
elif rtconfig.CROSS_TOOL == 'iar':
src = src + ['CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f429xx.s']
2016-08-19 00:35:30 +08:00
path = [cwd + '/STM32F4xx_HAL_Driver/Inc',
cwd + '/CMSIS/Device/ST/STM32F4xx/Include',
2016-08-19 00:35:30 +08:00
cwd + '/CMSIS/Include']
#CPPDEFINES = ['USE_STDPERIPH_DRIVER', rtconfig.STM32_TYPE]
CPPDEFINES = ['USE_HAL_DRIVER', 'STM32F429xx']
group = DefineGroup('STM32_HAL', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
2016-08-19 00:35:30 +08:00
Return('group')