We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b939c52 commit 112d3c3Copy full SHA for 112d3c3
builder/frameworks/espidf.py
@@ -236,7 +236,10 @@ def get_MD5_hash(phrase):
236
response = request.urlretrieve(sdkconfig_defconfig_url, defconfig_mcu)
237
with open(defconfig_mcu, 'r') as f1, open(sdkconfig_mcu, 'a') as f2:
238
f2.write(f1.read())
239
-
+ if mcu = "esp32c2":
240
+ ARDUINO_C2_LIB_DIR = platform.get_package_dir("framework-arduino-c2-skeleton-lib")
241
+ shutil.copytree(ARDUINO_C2_LIB_DIR, ARDUINO_FRMWRK_LIB_DIR, dirs_exist_ok=True)
242
+
243
def get_flag(line):
244
if line.startswith("#") and "is not set" in line:
245
return line.split(" ")[1]
0 commit comments