Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated probe-rs-tools instructions #580

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion microbit/src/03-setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,14 @@ cargo-size 0.3.3
In order to install cargo-embed, first install its [prerequisites](https://probe.rs/docs/getting-started/installation/) (note: these instructions are part of the more general [`probe-rs`](https://probe.rs/) embedded debugging toolkit). Then install it with cargo:

```console
$ cargo install probe-rs-tools --vers 0.24.0
$ cargo install --locked probe-rs-tools --vers '^0.24'
```

**NOTE** This may fail due to frequent changes in `probe-rs`. If so, go to <https://probe.rs> and follow the current installation instructions there.

Finally, verify that you have successfully installed `cargo-embed` by running:

```console
$ cargo embed --version
cargo-embed 0.24.0 (git commit: crates.io)
```
Expand Down
Loading