blob: e4b713a068b40797a10be7fc1a5e9e00be6e4d2e (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! 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;
pub mod peripheral;
|