diff --git a/src/lib.rs b/src/lib.rs index 1f1c6b6..54fbe28 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,17 +18,13 @@ use rp2040_hal::{ #[cfg(not(feature = "defmt"))] mod defmt { - #[macro_export] - macro_rules! info { - ($($_:tt)*) => {{}}; - } #[macro_export] macro_rules! error { ($($_:tt)*) => {{}}; } // macros are exported at the root of the crate so pull them back here - pub use super::{error, info}; + pub use super::error; } /// Alias to the Pin tuple used in `Spi<…>`