Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 56 additions & 3 deletions doc/nrf/app_dev/device_guides/nrf54h/ug_nrf54h20_gs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To follow this guide, make sure you have all the required hardware:
Installing the |NCS|
********************

Install the |NCS| following the instructions in the :ref:`install_ncs` documentation page.
Install the |NCS| following the instructions for both Visual Studio Code and the command line in the :ref:`install_ncs` documentation page.

.. rst-class:: numbered-step

Expand All @@ -60,6 +60,8 @@ Using the nRF54H20 DK with the |NCS| version |release| also requires the followi
+----------------------------------------------+-------------------------------------+
| nRF Util ``trace`` command | version |54H_nrfutil_trace_ver| |
+----------------------------------------------+-------------------------------------+
| nRF Util ``sdk-manager`` command | Latest |
+----------------------------------------------+-------------------------------------+

To install the required versions of the nRF Util commands, complete the following steps:

Expand All @@ -82,6 +84,7 @@ To install the required versions of the nRF Util commands, complete the followin

nrfutil install device=\ |54H_nrfutil_device_ver|\ --force
nrfutil install trace=\ |54H_nrfutil_trace_ver|\ --force
nrfutil install sdk-manager

For more information, see the `Installing specific versions of nRF Util commands`_ documentation.

Expand All @@ -91,6 +94,7 @@ To install the required versions of the nRF Util commands, complete the followin

nrfutil device --version
nrfutil trace --version
nrfutil sdk-manager --version

The output will show the installed versions.
Ensure they match the required versions.
Expand Down Expand Up @@ -194,8 +198,57 @@ It uses the ``nrf54h20dk/nrf54h20/cpuapp`` board target.
To build and program the sample to the nRF54H20 DK, complete the following steps:

1. Connect the nRF54H20 DK to your computer using the **DEBUGGER** port on the DK.
#. Open nRF Connect for Desktop, navigate to the Toolchain Manager, select the version |release| toolchain, and click the :guilabel:`Open terminal` button.
#. In the terminal window, navigate to the :file:`zephyr/samples/sysbuild/hello_world` folder containing the sample.
#. Start the toolchain environment for your operating system using the following command pattern, with ``--ncs-version`` corresponding to the |NCS| version you have installed:

.. tabs::

.. tab:: Windows

.. parsed-literal::
:class: highlight

nrfutil sdk-manager toolchain launch --ncs-version *version* --terminal

For example:

.. parsed-literal::
:class: highlight

nrfutil sdk-manager toolchain launch --ncs-version |release| --terminal

This example command starts the toolchain environment for the |NCS| |release|.

.. tab:: Linux

.. parsed-literal::
:class: highlight

nrfutil sdk-manager toolchain launch --ncs-version *version* --shell

For example:

.. parsed-literal::
:class: highlight

nrfutil sdk-manager toolchain launch --ncs-version |release| --shell

This example command starts the toolchain environment for the |NCS| |release|.

.. tab:: macOS

.. parsed-literal::
:class: highlight

nrfutil sdk-manager toolchain launch --ncs-version *version* --shell

For example:

.. parsed-literal::
:class: highlight

nrfutil sdk-manager toolchain launch --ncs-version |release| --shell

This example command starts the toolchain environment for the |NCS| |release|.#. In the terminal window, navigate to the :file:`zephyr/samples/sysbuild/hello_world` folder containing the sample.
Copy link

Copilot AI Nov 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing newline before the numbered step marker. The line should end after '|release|.' and the step marker '#.' should be on line 252.

Suggested change
This example command starts the toolchain environment for the |NCS| |release|.#. In the terminal window, navigate to the :file:`zephyr/samples/sysbuild/hello_world` folder containing the sample.
This example command starts the toolchain environment for the |NCS| |release|.
#. In the terminal window, navigate to the :file:`zephyr/samples/sysbuild/hello_world` folder containing the sample.

Copilot uses AI. Check for mistakes.
#. Run the following command to build the sample for application and radio cores::

west build -p -b nrf54h20dk/nrf54h20/cpuapp -T sample.sysbuild.hello_world.nrf54h20dk_cpuapp_cpurad .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ nRF54H20 IronSide SE binaries

.. toggle::

* The nRF54H20 IronSide SE binaries have been updated to version v23.0.1+16.
* The nRF54H20 IronSide SE binaries have been updated to version v23.1.0+19.
Starting from the |NCS| v3.2.0, you should always upgrade your nRF54H20 IronSide SE binaries to the latest version.

For more information, see:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1236,3 +1236,4 @@ Documentation
* The :ref:`app_power_opt_nRF91` page by moving it under the :ref:`ug_lte` section.
* The nRF54H20 SoC binaries are now called nRF54H20 IronSide SE binaries.
* The :ref:`ug_nrf54h20_custom_pcb` documentation to clarify how to configure the BICR for a custom PCB based on the nRF54H20 SoC.
* The :ref:`ug_nrf54h20_gs` page to update the getting started instructions for the nRF54H20 DK.
4 changes: 2 additions & 2 deletions doc/nrf/shortcuts.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

.. |jlink_ver| replace:: v8.76

.. |54H_nrfutil_device_ver| replace:: 2.13.1
.. |54H_nrfutil_trace_ver| replace:: 4.0.1
.. |54H_nrfutil_device_ver| replace:: 2.15.2
.. |54H_nrfutil_trace_ver| replace:: 4.4.0

.. ### Config shortcuts

Expand Down