11 lines
269 B
Rust
Raw Normal View History

//! Embassy executor and interrupt handling specific to cortex-m devices.
#![no_std]
2022-07-19 07:57:29 +02:00
#![warn(missing_docs)]
// This mod MUST go first, so that the others see its macros.
pub(crate) mod fmt;
pub use embassy_executor as executor;
pub mod interrupt;
pub mod peripheral;