Instruct devs to use nightly for embedded

The embedded test crate requires usage of the nightly toolchain, fix the
docs to show this.
This commit is contained in:
Tobin C. Harding 2023-02-03 08:43:36 +11:00
parent f52301151c
commit 55d17f2c18
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 2 additions and 2 deletions

View File

@ -4,13 +4,13 @@ To run the embedded test, first prepare your environment:
```shell
sudo ./scripts/install-deps
rustup target add thumbv7m-none-eabi
rustup +nightly target add thumbv7m-none-eabi
```
Then:
```shell
source ./scripts/env.sh && cargo run --target thumbv7m-none-eabi
source ./scripts/env.sh && cargo +nightly run --target thumbv7m-none-eabi
```
Output should be something like: