refactor(drivers/usb):replace rtt usb stack with cherryusb (#8799)

This commit is contained in:
sakumisu
2024-06-02 11:20:13 +08:00
committed by GitHub
parent 658813213e
commit 62d321caa0
214 changed files with 245858 additions and 1809 deletions

View File

@@ -1,13 +1,15 @@
# for module compiling
# RT-Thread building script for bridge
import os
from building import *
cwd = GetCurrentDir()
objs = []
list = os.listdir(cwd)
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')