add bsp lpc54102

This commit is contained in:
Coing
2014-12-16 19:54:29 +08:00
parent 82ef447e44
commit e4fdb84e96
164 changed files with 48650 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#Import('RTT_ROOT')
#Import('rtconfig')
from building import *
#cwd = os.path.join(str(Dir('#')),'drivers')
cwd = GetCurrentDir()
src = Glob('*.c')
# remove no need file.
if GetDepend('RT_USING_LWIP') == False:
SrcRemove(src, 'drv_emac.c')
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')