rt-thread-official/bsp/stm32/stm32l4r5-st-nucleo/board/SConscript

20 lines
329 B
Python
Raw Normal View History

2019-12-05 11:44:39 +08:00
from building import *
cwd = GetCurrentDir()
# add general drivers
src = Split('''
board.c
CubeMX_Config/Src/stm32l4xx_hal_msp.c
''')
path = [cwd]
path += [cwd + '/CubeMX_Config/Inc']
CPPDEFINES = ['STM32L4R5xx']
2024-05-06 13:09:15 +08:00
2019-12-05 11:44:39 +08:00
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
Return('group')