SConscript 1.1 KB
Newer Older
Y
YJIE_1998 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
import os
import rtconfig
from building import *

Import('SDK_LIB')

cwd = GetCurrentDir()

# add general drivers
src = Split('''
board.c
CubeMX_Config/Src/stm32f3xx_hal_msp.c
''')

path =  [cwd]
path += [cwd + '/CubeMX_Config/Inc']

startup_path_prefix = SDK_LIB

if rtconfig.CROSS_TOOL == 'gcc':
    src += [startup_path_prefix + '/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/gcc/startup_stm32f302x8.s']
elif rtconfig.CROSS_TOOL == 'keil':
    src += [startup_path_prefix + '/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/arm/startup_stm32f302x8.s']
elif rtconfig.CROSS_TOOL == 'iar':
    src += [startup_path_prefix + '/STM32F3xx_HAL/CMSIS/Device/ST/STM32F3xx/Source/Templates/iar/startup_stm32f302x8.s']

Y
YJIE_1998 已提交
27 28 29 30 31 32 33
# (STM32F301x8) || (STM32F302x8) || (STM32F318xx) 
# (STM32F302xC) || (STM32F303xC) || (STM32F358xx) 
# (STM32F303x8) || (STM32F334x8) || (STM32F328xx) 
# (STM32F302xE) || (STM32F303xE) || (STM32F398xx) 
# (STM32F373xC) || (STM32F378xx)
# You can select chips from the list above
CPPDEFINES = ['STM32F302x8']
Y
YJIE_1998 已提交
34 35 36
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)

Return('group')