Added LCD driver and enable SDRAM.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2077 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong@gmail.com
2012-04-16 04:16:19 +00:00
parent 50955197d5
commit 0982f6e079
17 changed files with 1595 additions and 259 deletions
+3 -7
View File
@@ -1,15 +1,11 @@
import copy
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
cwd = GetCurrentDir()
src = Glob('*.c')
# remove no need file.
if GetDepend('RT_USING_LWIP') == False:
src_need_remove = ['emac.c'] # need remove file list.
SrcRemove(src, src_need_remove)
SrcRemove(src, 'emac.c')
CPPPATH = [cwd]