mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-12-26 01:07:21 +00:00
增加bsp:stm32f429-apollo
硬件信息:正点原子apollo 开发板 本bsp已实现功能:UFFS,FAT(SDcard),应用模块
This commit is contained in:
14
bsp/stm32f429-apollo/SConscript
Normal file
14
bsp/stm32f429-apollo/SConscript
Normal file
@@ -0,0 +1,14 @@
|
||||
# for module compiling
|
||||
import os
|
||||
Import('RTT_ROOT')
|
||||
|
||||
cwd = str(Dir('#'))
|
||||
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')
|
||||
Reference in New Issue
Block a user