defmt_log_test/
lib.rs

1#![no_std]
2
3pub mod error;
4
5pub fn hello() {
6    defmt::info!("Hello, world!");
7}