From 6616be5e942164ecf006a73f184be96476bcd69a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20H=C3=BCbner?= Date: Mon, 20 Nov 2023 14:26:53 +0100 Subject: [PATCH] CHESTER: Update toolchain to NCS v2.5.0 --- chester/firmware-sdk/installation-on-macos.md | 6 +++--- chester/firmware-sdk/installation-on-ubuntu.md | 4 ++-- chester/firmware-sdk/installation-on-windows.md | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/chester/firmware-sdk/installation-on-macos.md b/chester/firmware-sdk/installation-on-macos.md index c083e8e..aa3dc87 100644 --- a/chester/firmware-sdk/installation-on-macos.md +++ b/chester/firmware-sdk/installation-on-macos.md @@ -61,19 +61,19 @@ brew install cmake ninja gperf python3 ccache qemu dtc wget libmagic If you have the **ARM processor**, use this command: ``` - wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_macos-aarch64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt + wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_macos-aarch64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt ``` If you have the **Intel processor**, use this command: ``` - wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_macos-x86_64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt + wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_macos-x86_64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt ``` 1. Run the **Zephyr SDK** bundle setup script: ``` - $HOME/.local/opt/zephyr-sdk-0.16.0/setup.sh + $HOME/.local/opt/zephyr-sdk-0.16.1/setup.sh ``` ## Create Application diff --git a/chester/firmware-sdk/installation-on-ubuntu.md b/chester/firmware-sdk/installation-on-ubuntu.md index 84b0884..57d6655 100644 --- a/chester/firmware-sdk/installation-on-ubuntu.md +++ b/chester/firmware-sdk/installation-on-ubuntu.md @@ -87,13 +87,13 @@ sudo apt install python3-venv 1. Download and unpack the toolchain: ``` - wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_linux-x86_64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt + wget -c https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_linux-x86_64.tar.xz -O - | xz -d -c - | tar xv -C $HOME/.local/opt ``` 1. Run the **Zephyr SDK** bundle setup script: ``` - $HOME/.local/opt/zephyr-sdk-0.16.0/setup.sh + $HOME/.local/opt/zephyr-sdk-0.16.1/setup.sh ``` ## Create Application diff --git a/chester/firmware-sdk/installation-on-windows.md b/chester/firmware-sdk/installation-on-windows.md index 81bc552..158ccfe 100644 --- a/chester/firmware-sdk/installation-on-windows.md +++ b/chester/firmware-sdk/installation-on-windows.md @@ -113,19 +113,19 @@ You can skip this step if you already have **Chocolatey** installed on your syst 1. Download the toolchain: ``` - wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_windows-x86_64.7z + wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.1/zephyr-sdk-0.16.1_windows-x86_64.7z ``` 1. Unzip the toolchain: ``` - 7z x zephyr-sdk-0.16.0_windows-x86_64.7z + 7z x zephyr-sdk-0.16.1_windows-x86_64.7z ``` 1. Go to the toolchain directory: ``` - cd zephyr-sdk-0.16.0 + cd zephyr-sdk-0.16.1 ``` 1. Run the **Zephyr SDK** bundle setup script: