summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReFil <31960031+ReFil@users.noreply.github.com>2024-04-15 12:17:43 +0100
committerGitHub <noreply@github.com>2024-04-15 12:17:43 +0100
commit8b0cf4e55b475b06117e244667ddbb93a80dc154 (patch)
treef7bb5d730a25d702313f987daadfb81533f3f74d
parent742d19ef634c84531b98a8d13c081610c38754ba (diff)
Zephyr 3.5 Update (#426)
* Zephyr 3.5 update * Changelog
-rw-r--r--CHANGELOG.md16
-rw-r--r--config/boards/arm/adv360/adv360.dtsi5
-rw-r--r--config/boards/arm/adv360/board.cmake2
-rw-r--r--config/west.yml2
4 files changed, 16 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1f9d722..1085f81 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,8 @@ Here's all notable changes and commits to both the configuration repo and the ba
Many thanks to all those who have submitted issues and pull requests to make this firmware better!
## Config repo
+4/5/2024 - Update base ZMK, remove deprecated attributes, change flashing cmake [#424](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/424)
+
14/3/2024 - Fix Makefile errors that prevent builds on macOS [#409](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/409)
18/2/2024 - Fix version.dtsi reset after build when running local builds [#385](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/pull/385)
@@ -107,9 +109,19 @@ There have beeen 5 branches of ZMK used for the 360 Pro so far. Beta branches ar
| [adv360-beta](https://github.com/ReFil/zmk/tree/adv360-beta) | 3/1/2022 | 9/17/2022 | V1.0 (since deleted) |
| [adv360-z3](https://github.com/ReFil/zmk/tree/adv360-z3) | 9/17/2022 | 7/6/2023 | V2.0 (since deleted) |
| [adv360-z3.2](https://github.com/ReFil/zmk/tree/adv360-z3.2) | 7/6/2023 | 20/10/2023 | [V3.0](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/tree/V3.0) (Up to commit 82494e7) |
-| [adv360-z3.2-2](https://github.com/ReFil/zmk/tree/adv360-z3.2-2) | 20/10/2023 | 1/14/2024 | [V3.0](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/tree/V3.0) (Up to commit XXXXXXX) |
-| [adv360-z3.2-3](https://github.com/ReFil/zmk/tree/adv360-z3.2-3) | 1/14/2024 | To date | [V3.0](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/tree/V3.0) (current) |
+| [adv360-z3.2-2](https://github.com/ReFil/zmk/tree/adv360-z3.2-2) | 20/10/2023 | 1/14/2024 | [V3.0](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/tree/V3.0) (Up to commit 4a5003a) |
+| [adv360-z3.2-3](https://github.com/ReFil/zmk/tree/adv360-z3.2-3) | 1/14/2024 | 4/5/2024 | [V3.0](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/tree/V3.0) (Up to commit XXXXXXX) |
+| [adv360-z3.5](https://github.com/ReFil/zmk/tree/adv360-z3.5) | 4/5/2024 | To date | [V3.0](https://github.com/KinesisCorporation/Adv360-Pro-ZMK/tree/V3.0) (Current) |
+
+### adv360-z3.5
+
+4/8/2024 - Refactor CI to target 360 Pro exclusively
+
+4/8/2024 - Fix CI failures
+
+3/27/2024 - Update ZMK event to new format
+3/27/2024 - Rebase off latest upstream ZMK (Commit 94c3b9a)
### adv360-z3.2-3
diff --git a/config/boards/arm/adv360/adv360.dtsi b/config/boards/arm/adv360/adv360.dtsi
index 0e09203..0c85836 100644
--- a/config/boards/arm/adv360/adv360.dtsi
+++ b/config/boards/arm/adv360/adv360.dtsi
@@ -107,11 +107,9 @@
#size-cells = <1>;
sd_partition: partition@0 {
- label = "softdevice";
reg = <0x00000000 0x00026000>;
};
code_partition: partition@26000 {
- label = "code_partition";
reg = <0x00026000 0x000c6000>;
};
@@ -125,12 +123,10 @@
* if enabled.
*/
storage_partition: partition@ec000 {
- label = "storage";
reg = <0x000ec000 0x00008000>;
};
boot_partition: partition@f4000 {
- label = "adafruit_boot";
reg = <0x000f4000 0x0000c000>;
};
};
@@ -145,7 +141,6 @@
led_strip: ws2812@0 {
compatible = "worldsemi,ws2812-spi";
- label = "WS2812";
/* SPI */
reg = <0>;
diff --git a/config/boards/arm/adv360/board.cmake b/config/boards/arm/adv360/board.cmake
index 3465290..292a274 100644
--- a/config/boards/arm/adv360/board.cmake
+++ b/config/boards/arm/adv360/board.cmake
@@ -5,5 +5,5 @@
board_runner_args(nrfjprog "--nrf-family=NRF52" "--softreset")
+include(${ZEPHYR_BASE}/boards/common/uf2.board.cmake)
include(${ZEPHYR_BASE}/boards/common/nrfjprog.board.cmake)
-#include(${ZEPHYR_BASE}/boards/common/blackmagicprobe.board.cmake)
diff --git a/config/west.yml b/config/west.yml
index e35c826..9f3a48d 100644
--- a/config/west.yml
+++ b/config/west.yml
@@ -7,7 +7,7 @@ manifest:
projects:
- name: zmk
remote: refil
- revision: adv360-z3.2-3
+ revision: adv360-z3.5
import: app/west.yml
self:
path: config