aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/layer-by-layer
diff options
context:
space:
mode:
authorYuri Astrakhan <[email protected]>2025-05-02 17:56:32 -0400
committerYuri Astrakhan <[email protected]>2025-05-02 17:56:32 -0400
commite5c03e1e791bf3460fe6e0af65a02f2259763eaa (patch)
tree2845c94a0fa88fc20ea68b9ebb9551aefef5abac /docs/examples/layer-by-layer
parent716160e9abe7591b171250a9029bad5ec656ac6d (diff)
chore: use `probe-rs` instead of `probe-run`
I found a few remaining deprecated `probe-run` cases.
Diffstat (limited to 'docs/examples/layer-by-layer')
-rw-r--r--docs/examples/layer-by-layer/.cargo/config.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/examples/layer-by-layer/.cargo/config.toml b/docs/examples/layer-by-layer/.cargo/config.toml
index 3012f05dc..f30d9e446 100644
--- a/docs/examples/layer-by-layer/.cargo/config.toml
+++ b/docs/examples/layer-by-layer/.cargo/config.toml
@@ -1,5 +1,6 @@
1[target.'cfg(all(target_arch = "arm", target_os = "none"))'] 1[target.'cfg(all(target_arch = "arm", target_os = "none"))']
2runner = "probe-run --chip STM32L475VG" 2# replace your chip as listed in `probe-rs chip list`
3runner = "probe-rs run --chip STM32L475VG"
3 4
4rustflags = [ 5rustflags = [
5 "-C", "link-arg=--nmagic", 6 "-C", "link-arg=--nmagic",