diff --git a/embassy-nrf-examples/.cargo/config b/embassy-nrf-examples/.cargo/config index 59128887..2bfb098e 100644 --- a/embassy-nrf-examples/.cargo/config +++ b/embassy-nrf-examples/.cargo/config @@ -1,5 +1,5 @@ [target.'cfg(all(target_arch = "arm", target_os = "none"))'] -runner = "probe-run --chip nRF52840_xxAA --defmt" +runner = "probe-run --chip nRF52840_xxAA" rustflags = [ # LLD (shipped with the Rust toolchain) is used as the default linker diff --git a/embassy-nrf-examples/Cargo.toml b/embassy-nrf-examples/Cargo.toml index 21f0bdd9..364fd8a5 100644 --- a/embassy-nrf-examples/Cargo.toml +++ b/embassy-nrf-examples/Cargo.toml @@ -20,8 +20,8 @@ defmt-error = [] embassy = { version = "0.1.0", path = "../embassy", features = ["defmt", "defmt-trace"] } embassy-nrf = { version = "0.1.0", path = "../embassy-nrf", features = ["defmt", "defmt-trace", "52840"] } -defmt = "0.1.3" -defmt-rtt = "0.1.0" +defmt = "0.2.0" +defmt-rtt = "0.2.0" cortex-m = "0.7.1" cortex-m-rt = "0.6.13" diff --git a/embassy-nrf-examples/src/example_common.rs b/embassy-nrf-examples/src/example_common.rs index 60bb0208..d16964d4 100644 --- a/embassy-nrf-examples/src/example_common.rs +++ b/embassy-nrf-examples/src/example_common.rs @@ -8,11 +8,11 @@ pub use defmt::*; use core::sync::atomic::{AtomicUsize, Ordering}; -#[defmt::timestamp] -fn timestamp() -> u64 { - static COUNT: AtomicUsize = AtomicUsize::new(0); - // NOTE(no-CAS) `timestamps` runs with interrupts disabled - let n = COUNT.load(Ordering::Relaxed); - COUNT.store(n + 1, Ordering::Relaxed); - n as u64 +defmt::timestamp! {"{=u64}", { + static COUNT: AtomicUsize = AtomicUsize::new(0); + // NOTE(no-CAS) `timestamps` runs with interrupts disabled + let n = COUNT.load(Ordering::Relaxed); + COUNT.store(n + 1, Ordering::Relaxed); + n as u64 + } } diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml index 239aa3c4..ddd2dc31 100644 --- a/embassy-nrf/Cargo.toml +++ b/embassy-nrf/Cargo.toml @@ -21,7 +21,7 @@ defmt-error = [ ] [dependencies] embassy = { version = "0.1.0", path = "../embassy" } -defmt = { version = "0.1.3", optional = true } +defmt = { version = "0.2.0", optional = true } log = { version = "0.4.11", optional = true } cortex-m-rt = "0.6.13" cortex-m = "0.7.1" diff --git a/embassy-stm32f4-examples/.cargo/config b/embassy-stm32f4-examples/.cargo/config index 83685398..3ccca879 100644 --- a/embassy-stm32f4-examples/.cargo/config +++ b/embassy-stm32f4-examples/.cargo/config @@ -1,5 +1,5 @@ [target.'cfg(all(target_arch = "arm", target_os = "none"))'] -runner = "probe-run --chip STM32F401CCUx --defmt" +runner = "probe-run --chip STM32F401CCUx" rustflags = [ # LLD (shipped with the Rust toolchain) is used as the default linker diff --git a/embassy-stm32f4-examples/Cargo.toml b/embassy-stm32f4-examples/Cargo.toml index 21696437..3e117ecb 100644 --- a/embassy-stm32f4-examples/Cargo.toml +++ b/embassy-stm32f4-examples/Cargo.toml @@ -20,8 +20,8 @@ defmt-error = [] embassy = { version = "0.1.0", path = "../embassy", features = ["defmt", "defmt-trace"] } embassy-stm32f4 = { version = "*", path = "../embassy-stm32f4", features = ["stm32f401"] } -defmt = "0.1.3" -defmt-rtt = "0.1.0" +defmt = "0.2.0" +defmt-rtt = "0.2.0" cortex-m = "0.7.1" cortex-m-rt = "0.6.13" diff --git a/embassy-stm32f4-examples/src/example_common.rs b/embassy-stm32f4-examples/src/example_common.rs index ff4d8575..54d63383 100644 --- a/embassy-stm32f4-examples/src/example_common.rs +++ b/embassy-stm32f4-examples/src/example_common.rs @@ -7,11 +7,11 @@ pub use defmt::*; use core::sync::atomic::{AtomicUsize, Ordering}; -#[defmt::timestamp] -fn timestamp() -> u64 { - static COUNT: AtomicUsize = AtomicUsize::new(0); - // NOTE(no-CAS) `timestamps` runs with interrupts disabled - let n = COUNT.load(Ordering::Relaxed); - COUNT.store(n + 1, Ordering::Relaxed); - n as u64 +defmt::timestamp! {"{=u64}", { + static COUNT: AtomicUsize = AtomicUsize::new(0); + // NOTE(no-CAS) `timestamps` runs with interrupts disabled + let n = COUNT.load(Ordering::Relaxed); + COUNT.store(n + 1, Ordering::Relaxed); + n as u64 + } } diff --git a/embassy-stm32f4/Cargo.toml b/embassy-stm32f4/Cargo.toml index afe6e8cc..f9a931b7 100644 --- a/embassy-stm32f4/Cargo.toml +++ b/embassy-stm32f4/Cargo.toml @@ -32,7 +32,7 @@ stm32f479 = ["stm32f4xx-hal/stm32f469"] [dependencies] embassy = { version = "0.1.0", path = "../embassy" } -defmt = { version = "0.1.3", optional = true } +defmt = { version = "0.2.0", optional = true } log = { version = "0.4.11", optional = true } cortex-m-rt = "0.6.13" cortex-m = "0.7.1" diff --git a/embassy/Cargo.toml b/embassy/Cargo.toml index 1799fad2..1c977d84 100644 --- a/embassy/Cargo.toml +++ b/embassy/Cargo.toml @@ -13,7 +13,7 @@ defmt-warn = [] defmt-error = [] [dependencies] -defmt = { version = "0.1.3", optional = true } +defmt = { version = "0.2.0", optional = true } log = { version = "0.4.11", optional = true } cortex-m = "0.7.1"