From 9520537323f5de41b35edfc7fe38bf60656412d7 Mon Sep 17 00:00:00 2001 From: Scott <5125421+BeldrothTheGold@users.noreply.github.com> Date: Mon, 13 Sep 2021 19:41:30 +0000 Subject: [PATCH 1/6] Fix missing flag for Adafruit PyPortal Titano (#172) --- boards/adafruit_pyportal_m4_titano.json | 1 + 1 file changed, 1 insertion(+) diff --git a/boards/adafruit_pyportal_m4_titano.json b/boards/adafruit_pyportal_m4_titano.json index 4f504a3..df6e60f 100644 --- a/boards/adafruit_pyportal_m4_titano.json +++ b/boards/adafruit_pyportal_m4_titano.json @@ -7,6 +7,7 @@ "cpu": "cortex-m4", "extra_flags": [ "-DARDUINO_PYPORTAL_M4_TITANO", + "-DADAFRUIT_PYPORTAL_M4_TITANO", "-DADAFRUIT_PYPORTAL", "-D__SAMD51J20A__", "-D__SAMD51__", From 698c2dab38304e14e113ae001f9827122771d54a Mon Sep 17 00:00:00 2001 From: Valerii Koval Date: Tue, 19 Oct 2021 23:14:58 +0300 Subject: [PATCH 2/6] Update Ubuntu image in CI --- .github/workflows/examples.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index e3859b2..2ab55f1 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-16.04, windows-latest, macos-latest] + os: [ubuntu-18.04, windows-latest, macos-latest] python-version: [3.7] example: - "examples/arduino-blink" From c57287376e7ee65e884003b3c7e04e3870face7a Mon Sep 17 00:00:00 2001 From: valeros Date: Thu, 21 Oct 2021 18:18:44 +0300 Subject: [PATCH 3/6] Update Zephyr to v2.7.0 --- platform.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform.json b/platform.json index b7ed093..676668d 100644 --- a/platform.json +++ b/platform.json @@ -145,7 +145,7 @@ "type": "framework", "optional": true, "owner": "platformio", - "version": "~2.20600.0" + "version": "~2.20700.0" }, "tool-avrdude": { "type": "uploader", @@ -182,7 +182,7 @@ "tool-cmake": { "optional": true, "owner": "platformio", - "version": "~3.16.0" + "version": "~3.21.0" }, "tool-dtc": { "optional": true, From e908077717edae538a21a1bea3e0b526c3d01746 Mon Sep 17 00:00:00 2001 From: valeros Date: Mon, 25 Oct 2021 17:02:16 +0300 Subject: [PATCH 4/6] Add Adafruit Arduino specific define --- builder/frameworks/arduino/arduino-samd.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builder/frameworks/arduino/arduino-samd.py b/builder/frameworks/arduino/arduino-samd.py index 11161f5..529279f 100644 --- a/builder/frameworks/arduino/arduino-samd.py +++ b/builder/frameworks/arduino/arduino-samd.py @@ -107,6 +107,9 @@ if VENDOR_CORE == "adafruit": env.Append( + CPPDEFINES=[ + "ARDUINO_SAMD_ADAFRUIT" + ], CPPPATH=[ os.path.join( FRAMEWORK_DIR, From ce79618210525871338d9062728573bffa09eaeb Mon Sep 17 00:00:00 2001 From: valeros Date: Thu, 28 Oct 2021 21:15:13 +0300 Subject: [PATCH 5/6] Update the OpenOCD package to the latest v0.11 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 676668d..1bf6e46 100644 --- a/platform.json +++ b/platform.json @@ -171,7 +171,7 @@ "type": "uploader", "optional": true, "owner": "platformio", - "version": "~2.1000.0" + "version": "~2.1100.0" }, "tool-jlink": { "type": "uploader", From ba7037eb150171ad9538adbc5adefefd52d0ed9f Mon Sep 17 00:00:00 2001 From: valeros Date: Sun, 31 Oct 2021 22:58:01 +0200 Subject: [PATCH 6/6] Bump version to 7.0.0 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 1bf6e46..8b7fb33 100644 --- a/platform.json +++ b/platform.json @@ -20,7 +20,7 @@ "type": "git", "url": "https://github.com/platformio/platform-atmelsam.git" }, - "version": "6.3.1", + "version": "7.0.0", "frameworks": { "arduino": { "package": "framework-arduino-sam",