rt-thread/bsp/stm32/stm32l433-ali-startkit/board/SConscript

19 lines
338 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
# add general drivers
src = Split('''
board.c
CubeMX_Config/Core/Src/stm32l4xx_hal_msp.c
''')
path = [cwd]
path += [cwd + '/CubeMX_Config/Core/Inc']
2023-01-09 10:14:23 +08:00
CPPDEFINES = ['STM32L433xx']
2024-05-06 13:09:15 +08:00
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
Return('group')