Robin Mueller db3c4e12fc
All checks were successful
Rust/sat-rs/pipeline/head This commit looks good
RTIC blinky works, defmt is problematic..
2024-05-20 13:30:52 +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()
}