12 lines
233 B
Rust
Raw Normal View History

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