1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#![no_std] #![no_main] #![feature(type_alias_impl_trait)] #[path = "../example_common.rs"] mod example_common; use example_common::*; use embassy_stm32 as _; #[cortex_m_rt::entry] fn main() -> ! { info!("Hello World!"); loop { //defmt::info!("loop!"); } }