Update RP2040 Aruino framwork and platform to latest (#5025)

This commit is contained in:
Jimmy Hedman
2023-07-10 01:30:39 +02:00
committed by GitHub
parent 8ca9115dc8
commit c5aacdd682
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -62,19 +62,19 @@ def _format_framework_arduino_version(ver: cv.Version) -> str:
# The default/recommended arduino framework version
# - https://github.com/earlephilhower/arduino-pico/releases
# - https://api.registry.platformio.org/v3/packages/earlephilhower/tool/framework-arduinopico
RECOMMENDED_ARDUINO_FRAMEWORK_VERSION = cv.Version(2, 6, 4)
RECOMMENDED_ARDUINO_FRAMEWORK_VERSION = cv.Version(3, 3, 0)
# The platformio/raspberrypi version to use for arduino frameworks
# - https://github.com/platformio/platform-raspberrypi/releases
# - https://api.registry.platformio.org/v3/packages/platformio/platform/raspberrypi
ARDUINO_PLATFORM_VERSION = cv.Version(1, 7, 0)
ARDUINO_PLATFORM_VERSION = cv.Version(1, 9, 0)
def _arduino_check_versions(value):
value = value.copy()
lookups = {
"dev": (cv.Version(2, 6, 4), "https://github.com/earlephilhower/arduino-pico"),
"latest": (cv.Version(2, 6, 4), None),
"dev": (cv.Version(3, 3, 0), "https://github.com/earlephilhower/arduino-pico"),
"latest": (cv.Version(3, 3, 0), None),
"recommended": (RECOMMENDED_ARDUINO_FRAMEWORK_VERSION, None),
}