增加bsp:stm32f429-apollo

硬件信息:正点原子apollo 开发板
本bsp已实现功能:UFFS,FAT(SDcard),应用模块
This commit is contained in:
lizhen9880
2017-04-12 09:25:37 +08:00
parent 5502558df9
commit 1da83c5c4c
222 changed files with 265615 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# for module compiling
import os
Import('RTT_ROOT')
cwd = str(Dir('#'))
objs = []
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
Return('objs')