[bsp] add v2m-msp2 board support

This commit is contained in:
liang yongxiang
2018-03-01 21:01:23 +08:00
parent 44def114fb
commit 311f4c96dd
19 changed files with 3609 additions and 0 deletions

14
bsp/v2m-mps2/SConscript Normal file
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')