From 7c4954fd67c94d1d8abed2af59a69722d4862316 Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Thu, 3 Dec 2020 00:16:14 +0100 Subject: [PATCH] Remove `--defmt` flag from probe-run This now gets automatically detected --- .cargo/config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index ec3a2f0..24903bd 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,6 +1,6 @@ [target.'cfg(all(target_arch = "arm", target_os = "none"))'] # TODO(2) replace `$CHIP` with your chip's name (see `probe-run --list-chips` output) -runner = "probe-run --chip $CHIP --defmt" +runner = "probe-run --chip $CHIP" rustflags = [ "-C", "linker=flip-link", "-C", "link-arg=-Tlink.x", @@ -21,4 +21,4 @@ target = "thumbv6m-none-eabi" # Cortex-M0 and Cortex-M0+ [alias] rb = "run --bin" -rrb = "run --release --bin" \ No newline at end of file +rrb = "run --release --bin"