29 lines
575 B
Python
29 lines
575 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
# add general drivers
|
|
src = Split('''
|
|
board.c
|
|
CubeMX_Config/Src/stm32l4xx_hal_msp.c
|
|
''')
|
|
|
|
if GetDepend(['BSP_USING_SPI_LCD']):
|
|
src += Glob('ports/drv_spi_lcd.c')
|
|
|
|
if GetDepend(['BSP_USING_SDCARD']):
|
|
src += Glob('ports/sdcard_port.c')
|
|
|
|
if GetDepend(['BSP_USING_ON_CHIP_FLASH']):
|
|
src += Glob('mnt.c')
|
|
|
|
path = [cwd]
|
|
path += [cwd + '/CubeMX_Config/Inc']
|
|
path += [cwd + '/ports']
|
|
|
|
CPPDEFINES = ['STM32L496xx']
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
|
|
|
|
Return('group')
|