From 066dae3ab76a54eada835203f6f2b3f797ee9d2b Mon Sep 17 00:00:00 2001 From: Liam Kinne Date: Tue, 2 Jan 2024 09:11:21 +1000 Subject: [PATCH] update probe-run to probe-rs --- .cargo/config | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.cargo/config b/.cargo/config index da195e9d..697121a1 100644 --- a/.cargo/config +++ b/.cargo/config @@ -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", diff --git a/README.md b/README.md index e40b6aba..99e51882 100644 --- a/README.md +++ b/README.md @@ -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