ESP32_C3 migrate to ESP-IDF package (#6427)

This commit is contained in:
tangzz98
2022-09-14 03:49:05 -04:00
committed by GitHub
parent 52e1d76254
commit cb7fd304ff
22 changed files with 870 additions and 1131 deletions

14
bsp/ESP32_C3/SConscript Normal file
View 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')