Files
drone_core
drone_cortex_m
drone_ctypes
futures
futures_channel
futures_core
futures_io
futures_sink
futures_task
futures_util
pin_utils
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! The Memory-Mapped Registers prelude.
//!
//! The purpose of this module is to alleviate imports of many common `reg`
//! traits by adding a glob import to the top of `reg` heavy modules:
//!
//! ```
//! # #![allow(unused_imports)]
//! use drone_cortex_m::reg::prelude::*;
//! ```

#[doc(no_inline)]
pub use crate::reg::RegBitBand;

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

#[doc(no_inline)]
pub use crate::reg::{
    field::{
        RRRegFieldBitBand as _, WRwRegFieldAtomic as _, WRwRegFieldBitAtomic as _,
        WRwRegFieldBitsAtomic as _, WWRegFieldBitBand as _,
    },
    RwRegAtomic as _,
};