From 5d489baa65321dc37c2cc68c81d0787d552ad6fb Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Fri, 9 Dec 2022 12:22:23 +0100 Subject: [PATCH 1/3] bump versions of tooling --- embedded-workshop-book/src/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/embedded-workshop-book/src/installation.md b/embedded-workshop-book/src/installation.md index 9546fdc..d4104a1 100644 --- a/embedded-workshop-book/src/installation.md +++ b/embedded-workshop-book/src/installation.md @@ -147,13 +147,13 @@ Install the [`flip-link`](https://crates.io/crates/flip-link) and [`probe-run`]( $ cargo install probe-run (..) -Installed package `probe-run v0.3.1` (..) +Installed package `probe-run v0.3.5` (..) $ cargo install flip-link (..) -Installed package `flip-link v0.1.5` (..) +Installed package `flip-link v0.1.6` (..) $ cargo install nrfdfu (..) -Installed package `nrfdfu v0.1.0` (..) +Installed package `nrfdfu v0.1.3` (..) ``` From 8cc15c714dce66674ef465c9739ac6f05104fb0c Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Fri, 9 Dec 2022 12:44:57 +0100 Subject: [PATCH 2/3] add setup test --- embedded-workshop-book/src/tooling-check.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/embedded-workshop-book/src/tooling-check.md b/embedded-workshop-book/src/tooling-check.md index 11a4db0..387b153 100644 --- a/embedded-workshop-book/src/tooling-check.md +++ b/embedded-workshop-book/src/tooling-check.md @@ -8,3 +8,11 @@ $ cargo size --version cargo-size 0.3.3 ``` +✅ Connect the nRF52840-DK with your computer by plugging the usb-cable into the J2 connector. (usb connector on the short side). + +✅ In the terminal run the following command from the `begginer/apps` folder. This will build and run a simple program on the DK to test the set-up. + +``` console +$ cargo run --bin hello +``` + From 6d084d0ef7b85732ebcc34a99796b803f9522706 Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Fri, 9 Dec 2022 13:16:38 +0100 Subject: [PATCH 3/3] reword sentence --- embedded-workshop-book/src/tooling-check.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded-workshop-book/src/tooling-check.md b/embedded-workshop-book/src/tooling-check.md index 387b153..c8ea425 100644 --- a/embedded-workshop-book/src/tooling-check.md +++ b/embedded-workshop-book/src/tooling-check.md @@ -8,7 +8,7 @@ $ cargo size --version cargo-size 0.3.3 ``` -✅ Connect the nRF52840-DK with your computer by plugging the usb-cable into the J2 connector. (usb connector on the short side). +✅ Connect the nRF52840-DK with your computer by plugging the usb-cable into the J2 connector on the DK (the usb connector on the short side of the board). ✅ In the terminal run the following command from the `begginer/apps` folder. This will build and run a simple program on the DK to test the set-up.