Skip to content

Commit

Permalink
Instruct devs to use nightly for embedded
Browse files Browse the repository at this point in the history
The embedded test crate requires usage of the nightly toolchain, fix the
docs to show this.
  • Loading branch information
tcharding committed Feb 2, 2023
1 parent f523011 commit 55d17f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bitcoin/embedded/README.md
Expand Up @@ -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:
Expand Down

0 comments on commit 55d17f2

Please sign in to comment.