Switch from probe-run to probe-rs-cli.

This commit is contained in:
Dario Nieuwenhuis 2023-04-26 18:10:39 +02:00
parent 0a2d6f0be0
commit 0c8e5f92c7
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ TODO:
## Running the example
- `cargo install probe-run`
- `cargo install probe-rs-cli`
- `cd examples/rpi-pico-w`
- `WIFI_NETWORK=MyWifiNetwork WIFI_PASSWORD=MyWifiPassword cargo run --release`

View File

@ -1,5 +1,5 @@
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
runner = "probe-run --chip RP2040"
runner = "probe-rs-cli run --chip RP2040"
[build]
target = "thumbv6m-none-eabi"