4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-25 23:07:24 +08:00

19 lines
328 B
Python
Raw Normal View History

2020-05-17 21:27:50 +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 = ['STM32L433xx']
2024-05-06 01:09:15 -04:00
2020-05-17 21:27:50 +08:00
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
Return('group')