embassy/embassy-cortex-m/src/lib.rs
2023-06-01 02:22:31 +02:00

10 lines
249 B
Rust

//! Embassy executor and interrupt handling specific to cortex-m devices.
#![no_std]
#![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;