drone-cortexm 0.14.1

ARM® Cortex®-M platform crate for Drone, an Embedded Operating System.
//! The Threads prelude.
//!
//! The purpose of this module is to alleviate imports of many common thread
//! token traits by adding a glob import to the top of thread token heavy
//! modules:
//!
//! ```
//! # #![allow(unused_imports)]
//! use drone_cortexm::thr::prelude::*;
//! ```

#[doc(no_inline)]
pub use drone_core::thr::prelude::*;

#[doc(no_inline)]
pub use crate::thr::IntToken;

#[doc(no_inline)]
pub use crate::{
    fib::ThrFiberProc as _,
    thr::{FutureRootExt as _, StreamRootExt as _, ThrNvic as _},
};