添加说明,更改芯片名称

This commit is contained in:
1
2021-08-24 09:19:35 +08:00
parent 91ffe90af3
commit 4a836e2a89
164 changed files with 95 additions and 3557 deletions
+15
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')