2021-12-26 23:03:27 +08:00
|
|
|
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
|
|
|
|
2021-12-26 23:03:27 +08:00
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
|
|
|
|
|
|
|
|
Return('group')
|