From 28c7a82f46163b9ee388aca043141f90ce7ba3ec Mon Sep 17 00:00:00 2001 From: urob <978080+urob@users.noreply.github.com> Date: Thu, 6 Apr 2023 08:14:15 -0400 Subject: [PATCH] Make Zephyr-3.2 the default --- config/west.yml | 2 +- readme.md | 4 ++++ scripts/zmk_build.sh | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/config/west.yml b/config/west.yml index d70e054..bfee2ba 100644 --- a/config/west.yml +++ b/config/west.yml @@ -7,7 +7,7 @@ manifest: projects: - name: zmk remote: urob - revision: main-3.2 + revision: main import: app/west.yml self: path: config diff --git a/readme.md b/readme.md index 8f7aa64..ac03536 100644 --- a/readme.md +++ b/readme.md @@ -4,6 +4,10 @@ This is my personal [ZMK firmware](https://github.com/zmkfirmware/zmk/) configur It consists of a 34-keys base layout that is re-used for various boards, including my Corneish Zen and an Advantage 360 pro. +This branch is updated for the latest ZMK using Zephyr 3.2. A legacy version +compatible with Zephyr 3.0 is available +[here](https://github.com/urob/zmk-config/tree/main-zephyr-3.0). + ## Highlights - clean keymap + unicode setup using helper macros from diff --git a/scripts/zmk_build.sh b/scripts/zmk_build.sh index e66a6b5..849f612 100755 --- a/scripts/zmk_build.sh +++ b/scripts/zmk_build.sh @@ -73,7 +73,7 @@ while [[ $# -gt 0 ]]; do done # Set defaults -[[ -z $ZEPHYR_VERSION ]] && ZEPHYR_VERSION="3.0" +[[ -z $ZEPHYR_VERSION ]] && ZEPHYR_VERSION="3.2" [[ -z $RUNWITH_DOCKER ]] && RUNWITH_DOCKER="true" [[ -z $OUTPUT_DIR ]] && OUTPUT_DIR="$WINHOME/Downloads"