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
+11
View File
@@ -0,0 +1,11 @@
import os
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = []
group = DefineGroup('Main', src, depend = [''], CPPPATH = CPPPATH)
Return('group')