Merge pull request #141 from ferrous-systems/improve-material

Improve material
This commit is contained in:
Lotte Steenbrink 2021-04-19 10:40:33 +02:00 committed by GitHub
commit bb89e80961
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View file

@ -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.

View file

@ -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.