You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -59,9 +59,9 @@ If you aren't using a debugger (or want to use other debugging configurations),
59
59
rustup target install thumbv6m-none-eabi
60
60
cargo install flip-link
61
61
# Installs the probe-rs tools, including probe-rs run, our recommended default runner
62
-
cargo install probe-rs --features=cli --locked
62
+
cargo install --locked probe-rs-tools
63
63
# If you want to use elf2uf2-rs instead, do...
64
-
cargo install elf2uf2-rs --locked
64
+
cargo install --locked elf2uf2-rs
65
65
```
66
66
If you get the error ``binary `cargo-embed` already exists`` during installation of probe-rs, run `cargo uninstall cargo-embed` to uninstall your older version of cargo-embed before trying again.
67
67
@@ -138,12 +138,12 @@ Some of the options for your `runner` are listed below:
138
138
*Step 1* - Install `cargo-embed`. This is part of the [`probe-rs`](https://crates.io/crates/probe-rs) tools:
139
139
140
140
```console
141
-
$ cargo install probe-rs --features=cli --locked
141
+
$ cargo install --locked probe-rs-tools
142
142
```
143
143
144
144
*Step 2* - Update settings in [Embed.toml](./Embed.toml)
145
145
- The defaults are to flash, reset, and start a defmt logging session
146
-
You can find all the settings and their meanings [in the probe-rs repo](https://github.com/probe-rs/probe-rs/blob/c0610e98008cbb34d0dc056fcddff0f2d4f50ad5/probe-rs/src/bin/probe-rs/cmd/cargo_embed/config/default.toml)
146
+
You can find all the settings and their meanings [in the probe-rs repo](https://github.com/probe-rs/probe-rs/blob/c435072d0f101ade6fc3fde4a7899b8b5ef69195/probe-rs-tools/src/bin/probe-rs/cmd/cargo_embed/config/default.toml)
147
147
148
148
*Step 3* - Use the command `cargo embed`, which will compile the code, flash the device
149
149
and start running the configuration specified in Embed.toml
@@ -157,7 +157,7 @@ Some of the options for your `runner` are listed below:
0 commit comments