embassy/embassy-cortex-m/src/lib.rs
2022-07-19 07:58:29 +02:00

11 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 mod executor;
pub mod interrupt;
pub mod peripheral;