2022-06-23 12:59:18 +02:00
|
|
|
//! Embassy executor and interrupt handling specific to cortex-m devices.
|
2022-06-11 05:08:57 +02:00
|
|
|
#![no_std]
|
2022-07-19 07:57:29 +02:00
|
|
|
#![warn(missing_docs)]
|
2022-06-11 05:08:57 +02:00
|
|
|
|
|
|
|
// This mod MUST go first, so that the others see its macros.
|
|
|
|
pub(crate) mod fmt;
|
|
|
|
|
2023-04-03 01:18:27 +02:00
|
|
|
pub use embassy_executor as executor;
|
2022-06-11 05:08:57 +02:00
|
|
|
pub mod interrupt;
|
|
|
|
pub mod peripheral;
|