From 3e54af411b1fec4e49afd07c8e55ed6140eb4ee0 Mon Sep 17 00:00:00 2001 From: Lotte Steenbrink Date: Mon, 19 Apr 2021 11:56:28 +0200 Subject: [PATCH] add probe-run explanation --- beginner/apps/.cargo/config.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beginner/apps/.cargo/config.toml b/beginner/apps/.cargo/config.toml index 7a1c918..4b518a8 100644 --- a/beginner/apps/.cargo/config.toml +++ b/beginner/apps/.cargo/config.toml @@ -6,6 +6,8 @@ rustflags = [ ] [target.thumbv7em-none-eabihf] +# set custom cargo runner to flash & run on embedded target when we call `cargo run` +# for more information, check out https://github.com/knurling-rs/probe-run runner = "probe-run --chip nRF52840_xxAA" rustflags = [ "-C", "link-arg=-Tlink.x",