[bsp/stm32] add robomaster c board.

This commit is contained in:
crazt
2021-06-29 20:47:02 +08:00
parent ae3c272e2c
commit 551923578f
39 changed files with 13946 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# for module compiling
import os
Import('RTT_ROOT')
from building import *
cwd = GetCurrentDir()
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')