Arduino core 3.1.2

This commit is contained in:
Jason2866
2025-02-13 14:20:42 +01:00
committed by GitHub
parent 6a5e1fcf97
commit b0e120fd7c
16 changed files with 559 additions and 47 deletions
+5
View File
@@ -53,6 +53,11 @@ class Espressif32Platform(PlatformBase):
if mcu == "esp32c2":
self.packages["framework-arduino-c2-skeleton-lib"]["optional"] = False
# Enable check tools only when "check_tool" is active
for p in self.packages:
if p in ("tool-cppcheck", "tool-clangtidy", "tool-pvs-studio"):
self.packages[p]["optional"] = False if str(variables.get("check_tool")).strip("['']") in p else True
if "buildfs" in targets:
filesystem = variables.get("board_build.filesystem", "littlefs")
if filesystem == "littlefs":