Skip to content

Commit

Permalink
remove unused info! placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
ithinuel committed Nov 5, 2023
1 parent 215795c commit 01a7e71
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<…>`
Expand Down

0 comments on commit 01a7e71

Please sign in to comment.