6 lines
99 B
Rust
6 lines
99 B
Rust
#![no_main]
|
|
#![no_std]
|
|
|
|
#[defmt::panic_handler]
|
|
fn foo(x: bool) -> ! { info!("{:?}", x); loop {} }
|