update stm32f207 SConscript

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1735 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
wuyangyong 2011-09-30 06:32:07 +00:00
parent 85d57f4bee
commit 1e712ebcdc
1 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,12 @@ from building import *
src_bsp = ['application.c', 'startup.c', 'board.c', 'stm32f20x_it.c']
src_drv = ['usart.c', 'serial.c', 'rtc.c']
if GetDepend('RT_USING_DFS'):
src_drv += ['stm32f2xx_eth.c']
if GetDepend('RT_USING_LWIP'):
src_drv += ['sdio_sd.c']
src = src_bsp + src_drv
CPPPATH = [GetCurrentDir()]
group = DefineGroup('Startup', src, depend = [''], CPPPATH = CPPPATH)