From cf47082ce7e1ad15c5c4227c1927f73b3049c6e6 Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Thu, 15 Apr 2021 13:23:24 +0200 Subject: [PATCH 1/3] remove irrelevant lines --- embedded-workshop-book/src/tooling-check.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/embedded-workshop-book/src/tooling-check.md b/embedded-workshop-book/src/tooling-check.md index 82a69e3..e260850 100644 --- a/embedded-workshop-book/src/tooling-check.md +++ b/embedded-workshop-book/src/tooling-check.md @@ -4,8 +4,6 @@ ✅ Let's check that you have installed all the tools listed in the previous section. -❗ The first two commands *must* return version `0.8.x` - ``` console $ cargo size --version cargo-size 0.3.3 @@ -13,5 +11,3 @@ cargo-size 0.3.3 $ nrfutil version nrfutil version 6.1.0 ``` - -✅ Now let's make sure you've installed the tools shipped with the workshop material. From 3dc52717b69018138906b5e7b95864fbc893d1ac Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Thu, 15 Apr 2021 13:38:20 +0200 Subject: [PATCH 2/3] rm redundant 'run program' --- embedded-workshop-book/src/using-hal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded-workshop-book/src/using-hal.md b/embedded-workshop-book/src/using-hal.md index f4f1758..535759f 100644 --- a/embedded-workshop-book/src/using-hal.md +++ b/embedded-workshop-book/src/using-hal.md @@ -16,7 +16,7 @@ The `dk::init` function we have been calling in all programs initializes a few o $ cargo doc -p dk --open ``` -✅ Check the API docs of the `Led` abstraction then run the `led` program. Change the `led` program, so that the bottom two leds are turned on, and the top two are turned off. +✅ Check the API docs of the `Led` abstraction. Change the `led` program, so that the bottom two leds are turned on, and the top two are turned off. ✅ Uncomment the `log::set_max_level` line. This will make the logs more verbose; they will now include logs from the board initialization function (`dk::init`) and from the `Led` API. From dfda34cbbf5b03ba9cb948b827645552f377ad37 Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Thu, 15 Apr 2021 13:39:04 +0200 Subject: [PATCH 3/3] fix typo --- embedded-workshop-book/src/using-hal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded-workshop-book/src/using-hal.md b/embedded-workshop-book/src/using-hal.md index 535759f..4441e89 100644 --- a/embedded-workshop-book/src/using-hal.md +++ b/embedded-workshop-book/src/using-hal.md @@ -16,7 +16,7 @@ The `dk::init` function we have been calling in all programs initializes a few o $ cargo doc -p dk --open ``` -✅ Check the API docs of the `Led` abstraction. Change the `led` program, so that the bottom two leds are turned on, and the top two are turned off. +✅ Check the API docs of the `Led` abstraction. Change the `led` program, so that the bottom two LEDs are turned on, and the top two are turned off. ✅ Uncomment the `log::set_max_level` line. This will make the logs more verbose; they will now include logs from the board initialization function (`dk::init`) and from the `Led` API.