Nrf5340 DK Page: Difference between revisions

From bibbleWiki
Jump to navigation Jump to search
Line 1: Line 1:
=Introduction=
=Introduction=
This page is for information regarding the Nordic NRF5340-DK
This page is for information regarding the Nordic NRF5340-DK
=Tools=
=Development Setup=
You can download mrf-command-line-tools_10.24.2_amd64.deb from [https://www.nordicsemi.com/Products/Development-tools/nRF-Command-Line-Tools/Download?lang=en#infotabs here]
*You can download mrf-command-line-tools_10.24.2_amd64.deb from [https://www.nordicsemi.com/Products/Development-tools/nRF-Command-Line-Tools/Download?lang=en#infotabs here]
*You then download nrfutil and move it to /usr/local/bin and set permissions
 
Install the toolchain manager with
<syntaxhighlight lang="bash">
nrfutil install toolchain-manager
</syntaxhighlight>
List the available SDKS and install
<syntaxhighlight lang="bash">
nrfutil toolchain-manager search
nrfutil toolchain-manager install --ncs-version v2.6.1
</syntaxhighlight>
Next start some wrapper for git I needed to fix this first with
<syntaxhighlight lang="bash">
sudo ln -s /usr/lib/x86_64-linux-gnu/libunistring.so.5 /usr/lib/x86_64-linux-gnu/libunistring.so.2
</syntaxhighlight>
<syntaxhighlight lang="bash">
nrfutil toolchain-manager launch --shell
</syntaxhighlight>

Revision as of 06:08, 4 May 2024

Introduction

This page is for information regarding the Nordic NRF5340-DK

Development Setup

  • You can download mrf-command-line-tools_10.24.2_amd64.deb from here
  • You then download nrfutil and move it to /usr/local/bin and set permissions

Install the toolchain manager with

nrfutil install toolchain-manager

List the available SDKS and install

nrfutil toolchain-manager search
nrfutil toolchain-manager install --ncs-version v2.6.1

Next start some wrapper for git I needed to fix this first with

sudo ln -s /usr/lib/x86_64-linux-gnu/libunistring.so.5 /usr/lib/x86_64-linux-gnu/libunistring.so.2
nrfutil toolchain-manager launch --shell