drone-stm32 0.8.3

Drone for STM32.
//! The Drone STM32 Prelude.
//!
//! It is an analogue of [`std::prelude`], which is not available in
//! `#![no_std]` contexts.
//!
//! To automatically inject the imports into every module, place this code to
//! the crate root:
//!
//! ```
//! #![feature(prelude_import)]
//!
//! extern crate drone_stm32 as drone_plat;
//!
//! #[prelude_import]
//! #[allow(unused_imports)]
//! use drone_plat::prelude::*;
//! ```
//!
//! [`std::prelude`]: https://doc.rust-lang.org/std/prelude/

pub use drone_core::prelude::*;

pub use thr::{FuturePlat, StreamPlat};