from building import * cwd = GetCurrentDir() # add general drivers src = Split(''' board.c CubeMX_Config/Src/stm32l4xx_hal_msp.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')