1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Optional logging.
#![allow(unused)]
macro_rules! trace {
($($args:tt)*) => {
#[cfg(feature = "defmt")]
{
defmt::trace!($($args)*)
}
};
}
macro_rules! debug {
($($args:tt)*) => {
#[cfg(feature = "defmt")]
{
defmt::debug!($($args)*)
}
};
}
macro_rules! info {
($($args:tt)*) => {
#[cfg(feature = "defmt")]
{
defmt::info!($($args)*)
}
};
}
macro_rules! warn {
($($args:tt)*) => {
#[cfg(feature = "defmt")]
{
defmt::warn!($($args)*)
}
};
}