9 lines
103 B
Rust
9 lines
103 B
Rust
#![no_main]
|
|
#![no_std]
|
|
|
|
#[defmt::panic_handler]
|
|
#[export_name = "hello"]
|
|
fn foo() -> ! {
|
|
loop {}
|
|
}
|