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 271c6d9 commit b5c5c01Copy full SHA for b5c5c01
builder/frameworks/espidf.py
@@ -236,7 +236,7 @@ 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":
+ 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
0 commit comments