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 8af3d90 commit 8fa8efeCopy full SHA for 8fa8efe
builder/frameworks/arduino.py
@@ -70,6 +70,11 @@
70
BUILD_UNFLAGS=new_build_unflags
71
)
72
73
+if mcu == "esp32c2":
74
+ ARDUINO_FRMWRK_LIB_DIR = platform.get_package_dir("framework-arduinoespressif32-libs")
75
+ ARDUINO_C2_LIB_DIR = platform.get_package_dir("framework-arduino-c2-skeleton-lib")
76
+ shutil.copytree(ARDUINO_C2_LIB_DIR, ARDUINO_FRMWRK_LIB_DIR, dirs_exist_ok=True)
77
+
78
def install_python_deps():
79
def _get_installed_pip_packages():
80
result = {}
0 commit comments