#[cfg(test)]
mod tests {
#[defmt::global_logger]
struct GlobalLogger;
unsafe impl defmt::Logger for GlobalLogger {
fn acquire() {}
unsafe fn flush() {}
unsafe fn release() {}
unsafe fn write(_bytes: &[u8]) {}
}
defmt::timestamp!("");
#[defmt::panic_handler]
fn panic() -> ! {
panic!()
}
}