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

Migrate from probe-run to probe-rs #109

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .cargo/config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[target.thumbv7em-none-eabihf]
runner = 'probe-run --connect-under-reset'
runner = 'probe-rs run --connect-under-reset'
rustflags = [
"-C", "link-arg=-Tlink.x",
"-C", "link-arg=-Tdefmt.x",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ cargo run --example blinky_delay --features stm32g474,log-rtt,defmt --release --
A list of chips supported by probe-rs can be found by running

```
probe-run --list-chips
probe-rs chip list
```

For furher information, see the documentation for [probe-run](https://github.com/knurling-rs/probe-run).
For furher information, see the documentation for [probe-rs](https://github.com/probe-rs/probe-rs).

### Using as a Dependency

Expand Down
Loading