Skip to content

Commit db8058d

Browse files
doc: Mention "commander" and "Jlink" package
Commander is needed to flash SiWx917. So, explain how to install commander in `README`. Also add the commands to automate the installation (ie. for Docker images). Signed-off-by: Jérôme Pouiller <[email protected]>
1 parent 1ec734f commit db8058d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,25 @@ TL;DR:
3232
cd zephyr-sdk-0.16.8
3333
./setup.sh
3434

35+
[Install J-Link software pack][3]:
36+
37+
curl --data-raw accept_license_agreement=accepted https://www.segger.com/downloads/jlink/JLink_Linux_$(uname -m).deb -o JLink_Linux_$(uname -m).deb
38+
sudo dpkg -i JLink_Linux_$(uname -m).deb
39+
40+
[Install Simplicity Commander][4]:
41+
42+
cd /tmp
43+
wget https://www.silabs.com/documents/login/software/SimplicityCommander-Linux.zip
44+
unzip SimplicityCommander-Linux.zip
45+
sudo tar -C /opt -xvf /tmp/SimplicityCommander-Linux/Commander_linux_$(uname -m)_*.tar.bz
46+
sudo ln -sfn /opt/commander/commander /usr/local/bin/
47+
3548
Build an application:
3649

3750
west build -b siwx917_rb4338a zephyr/samples/hello_world
3851

3952

4053
[1]: https://docs.zephyrproject.org/latest/develop/west/install.html
4154
[2]: https://docs.zephyrproject.org/latest/develop/toolchains/index.html
55+
[3]: https://www.segger.com/jlink-software.html
56+
[4]: https://www.silabs.com/developers/simplicity-studio/simplicity-commander?tab=downloads

0 commit comments

Comments
 (0)