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:
parent
f52301151c
commit
55d17f2c18
|
@ -4,13 +4,13 @@ To run the embedded test, first prepare your environment:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
sudo ./scripts/install-deps
|
sudo ./scripts/install-deps
|
||||||
rustup target add thumbv7m-none-eabi
|
rustup +nightly target add thumbv7m-none-eabi
|
||||||
```
|
```
|
||||||
|
|
||||||
Then:
|
Then:
|
||||||
|
|
||||||
```shell
|
```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:
|
Output should be something like:
|
||||||
|
|
Loading…
Reference in New Issue