Files
sat-rs/embedded-examples/stm32h7-nucleo-rtic/src/bin/hello.rs
2024-05-25 12:35:26 +02:00

12 lines
233 B
Rust

#![no_main]
#![no_std]
use satrs_stm32h7_nucleo_rtic as _; // global logger + panicking-behavior + memory layout
#[cortex_m_rt::entry]
fn main() -> ! {
defmt::println!("Hello, world!");
satrs_stm32h7_nucleo_rtic::exit()
}