From 3352f0cf87456c07c0e4e8646672aed8ed89a069 Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Mon, 1 May 2023 10:35:52 +0200 Subject: [PATCH] Switch back to defmt_rtt till brtt is fixed --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b7dc81e..f08a6e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.0" [dependencies] cortex-m = { version = "0.7", features = ["critical-section-single-core"] } defmt = "0.3" -defmt-brtt = "0.1" +defmt-rtt = "0.4" panic-probe = { version = "0.3", features = ["print-defmt"] } # TODO select the correct rtic backend rtic = { version = "2.0.0-alpha.1", features = [ "correct-rtic-backend" ] } diff --git a/src/lib.rs b/src/lib.rs index ac69537..ab66632 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ #![no_std] use core::sync::atomic::{AtomicUsize, Ordering}; -use defmt_brtt as _; // global logger +use defmt_rtt as _; // global logger // TODO adjust HAL import // use some_hal as _; // memory layout