[libcpu][asm9260t] Add new BSP for AlphaScale ASM9260T

This commit is contained in:
ardafu
2015-05-04 16:30:05 +08:00
parent cc6b290640
commit 9f36fd61a4
45 changed files with 6244 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'drivers')
# add the general drvers.
src = Split("""
board.c
usart.c
""")
# add Ethernet drvers.
if GetDepend('RT_USING_LED'):
src += ['led.c']
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')