1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#![no_std] #![no_main]#![feature(type_alias_impl_trait)] extern crate alloc; use {defmt_rtt as _, panic_probe as _}; #[global_allocator] static HEAP: Heap = Heap::empty(); #[embassy_executor::main] async fn main() { todo!() }