rt-thread/bsp/stm32f429-disco/drivers/SConscript

20 lines
281 B
Python
Raw Normal View History

2016-08-19 00:35:30 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
2016-08-19 00:35:30 +08:00
# add the general drivers.
src = Split("""
board.c
stm32f4xx_it.c
usart.c
drv_sdram.c
2016-08-19 00:35:30 +08:00
""")
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')