#![no_std] #![no_main] #![feature(impl_trait_in_assoc_type)] use molybdos::genlog::defmt; use molybdos::reexports::*; #[defmt::panic_handler] fn panic() -> ! { panic_probe::hard_fault(); } #[embassy_executor::main] async fn main(_spawner: embassy_executor::Spawner) { genlog::info!("hello"); molybdos::heap::init(); }