rt-thread/bsp/stm32l072/board/SConscript

28 lines
499 B
Python
Raw Normal View History

2016-09-21 13:18:21 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'drivers')
# add the general drivers.
src = Split("""
board.c
stm32l0xx_it.c
usart.c
""")
# add gpio drivers.
if GetDepend('RT_USING_PIN'):
src += ['gpio.c']
# add spi drivers.
if GetDepend('RT_USING_SPI'):
src += ['drv_spi.c']
CPPPATH = [cwd,
cwd + '../Drivers/CMSIS/Device/ST/STM32L0xx/Include']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')