dr 驱动适配 sdio & usb

Signed-off-by: a1012112796 <1012112796@qq.com>
This commit is contained in:
2024-07-25 08:40:48 +08:00
parent c1bcad0c50
commit 481910f755
34 changed files with 6231 additions and 8 deletions

15
MDK_405_dr/SConscript Normal file
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')