mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-26 02:47:18 +08:00
* 重新pull后上传bsp和action * remove the file named main.c in cubemx prj and add enter at last in the file named user_key.c * remove personal project environment file project.uvguix.slhuan in rtt/bsp/stm32/stm32f103_100ask_mini * remove system_stmf1xx.c in bsp/stm32/stm32f103-100ask_pro/mini * modify stm32f1xx_it.c code to conform to the specification Co-authored-by: slhuan <953172510@qq.com>
16 lines
316 B
Python
16 lines
316 B
Python
# 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')
|