1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-03-12 22:26:08 +00:00

docs(nordic): update README.md for build

[no changelog]
This commit is contained in:
Ondrej Mikle 2025-02-24 17:29:06 +01:00 committed by M1nd3r
parent 4b6db8a789
commit 29ed889375

View File

@ -31,21 +31,22 @@ Follow these steps to set up the project on your local machine.
Using nrfutil, install the required toolchain for the nRF Connect SDK: Using nrfutil, install the required toolchain for the nRF Connect SDK:
```sh ```sh
nrfutil toolchain-manager install --ncs-version v2.6.2 nrfutil toolchain-manager install --ncs-version v2.9.0
``` ```
### Launch the nRF Shell ### Launch the nRF Shell
First, launch the nRF shell using the `nrfutil` toolchain manager: First, launch the nRF shell using the `nrfutil` toolchain manager and set the NCS to chosen version:
```sh ```sh
nrfutil toolchain-manager launch --shell nrfutil toolchain-manager launch --shell
west init -m https://github.com/nrfconnect/sdk-nrf --mr v2.9.0 v2.9.0
``` ```
### Initialize the Workspace ### Initialize the Workspace
Initialize your West workspace for the Trezor BLE Gateway project: Initialize your West workspace for the Trezor BLE Gateway project:
```sh ```sh
cd west cd nordic
west init -l ./trezor west init -l ./trezor
``` ```