feat add co2_g8s for sensor framework

This commit is contained in:
Liu_Weichao
2022-03-08 16:39:21 +08:00
parent 68f92a45ed
commit c6b5d051a3
11 changed files with 305 additions and 36 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')