"> <@dirbaio:matrix.org> embassy..." <- > <@michael.desilva:matrix.org> Is it possible to combine embassy and https://github.com/stm32-rs/stm32h7xx-hal? Reason I ask is these use > > ```rust > #[cortex_m_rt::entry] > fn main() -> ! { > ``` > > instead of > > ```rust > #[embassy_executor::main] > async fn main(_spawner: Spawner) { > ``` Answering this - you maybe could, but embassy is two things: * an async executor * a HAL (for the stm32) You're sort of asking if you can use the async executor with a different hal, which you can, but its not helpful if you use it with a non-async hal like stm32h7xx-hal