Framework/sensor/hs300x

1.Kconfig is ok.
2.gcc is ok.
This commit is contained in:
yl1185
2022-06-23 14:48:53 +08:00
parent 15a8589770
commit 81fbf93dd2
4 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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(path, 'SConscript'))
Return('objs')