#[macro_export]
macro_rules! iprint {
($channel:expr, $s:expr) => {
$crate::itm::write_str($channel, $s);
};
($channel:expr, $($arg:tt)*) => {
$crate::itm::write_fmt($channel, format_args!($($arg)*));
};
}
#[macro_export]
macro_rules! iprintln {
($channel:expr) => {
iprint!($channel, "\n");
};
($channel:expr, $fmt:expr) => {
iprint!($channel, concat!($fmt, "\n"));
};
($channel:expr, $fmt:expr, $($arg:tt)*) => {
iprint!($channel, concat!($fmt, "\n"), $($arg)*);
};
}
#[macro_export]
macro_rules! singleton {
(: $ty:ty = $expr:expr) => {
$crate::interrupt::free(|_| unsafe {
static mut USED: bool = false;
static mut VAR: $ty = $expr;
if USED {
None
} else {
USED = true;
let var: &'static mut _ = &mut VAR;
Some(var)
}
})
}
}