From 9d461cfe35032e0e5ab3f01c7acbb559e70058fc Mon Sep 17 00:00:00 2001 From: Valerii Koval Date: Fri, 24 Nov 2023 14:03:52 +0200 Subject: [PATCH 1/6] Downgrade GCC toolchain to v7 for Arduino-mbed boards The toolchain version now corresponds to GCC used by the original Arduino core to avoid compatibility issues Resolves #185 --- platform.json | 1 + platform.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/platform.json b/platform.json index ce235f1..74d1412 100644 --- a/platform.json +++ b/platform.json @@ -39,6 +39,7 @@ "owner": "platformio", "version": ">=1.60301.0,<1.80000.0", "optionalVersions": [ + "~1.70201.0", "~1.80201.0", "~1.90201.0" ] diff --git a/platform.py b/platform.py index e477696..2cec3af 100644 --- a/platform.py +++ b/platform.py @@ -54,7 +54,7 @@ def configure_default_packages(self, variables, targets): self.packages["tool-gperf"]["optional"] = False if board in ("nano33ble", "nicla_sense_me"): - self.packages["toolchain-gccarmnoneeabi"]["version"] = "~1.80201.0" + self.packages["toolchain-gccarmnoneeabi"]["version"] = "~1.70201.0" self.frameworks["arduino"]["package"] = "framework-arduino-mbed" self.frameworks["arduino"][ "script" From a095c5302f26ebabbe71b7e7d5312e4342d12f2c Mon Sep 17 00:00:00 2001 From: valeros Date: Wed, 20 Dec 2023 11:58:42 +0200 Subject: [PATCH 2/6] Sync Arduino-mbed build script Resolves #187 --- builder/frameworks/arduino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/frameworks/arduino b/builder/frameworks/arduino index 6c8589b..9f27595 160000 --- a/builder/frameworks/arduino +++ b/builder/frameworks/arduino @@ -1 +1 @@ -Subproject commit 6c8589b1058991cd26846690b3ea90b645d2fa18 +Subproject commit 9f2759536584df4f9623f970c760d5703621c863 From 689b78e191654dcad6e869f2595bb302b1ab615b Mon Sep 17 00:00:00 2001 From: valeros Date: Wed, 20 Dec 2023 15:41:16 +0200 Subject: [PATCH 3/6] Update Adafruit core to v1.6.0 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 74d1412..5a84adc 100644 --- a/platform.json +++ b/platform.json @@ -54,7 +54,7 @@ "type": "framework", "optional": true, "owner": "platformio", - "version": "~1.10500.0" + "version": "~1.10600.0" }, "framework-arduinonordicnrf5": { "type": "framework", From 0c0fe71824e9ceb14264636fd5067a86836111f3 Mon Sep 17 00:00:00 2001 From: valeros Date: Thu, 21 Dec 2023 12:31:08 +0200 Subject: [PATCH 4/6] Update Arduino-mbed core to v4.0.10 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 5a84adc..02804ee 100644 --- a/platform.json +++ b/platform.json @@ -66,7 +66,7 @@ "type": "framework", "optional": true, "owner": "platformio", - "version": "~4.0.6" + "version": "~4.0.10" }, "framework-cmsis": { "type": "framework", From a766db0ea948eb59aa8690cf639b5b77359257ad Mon Sep 17 00:00:00 2001 From: valeros Date: Thu, 21 Dec 2023 12:31:23 +0200 Subject: [PATCH 5/6] Sync Adafruit build script --- builder/frameworks/arduino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/frameworks/arduino b/builder/frameworks/arduino index 9f27595..652df28 160000 --- a/builder/frameworks/arduino +++ b/builder/frameworks/arduino @@ -1 +1 @@ -Subproject commit 9f2759536584df4f9623f970c760d5703621c863 +Subproject commit 652df281f7a1e294b31f11bbb033a81a0c65b13c From 824bd67af919ae3c9a75a7cb619b41093ace1133 Mon Sep 17 00:00:00 2001 From: valeros Date: Wed, 27 Dec 2023 14:01:35 +0200 Subject: [PATCH 6/6] Bump version to 10.3.0 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 02804ee..77cfa9d 100644 --- a/platform.json +++ b/platform.json @@ -18,7 +18,7 @@ "type": "git", "url": "https://github.com/platformio/platform-nordicnrf52.git" }, - "version": "10.2.0", + "version": "10.3.0", "frameworks": { "arduino": { "package": "framework-arduinonordicnrf5",