1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! Registers for Drone threads.

use drone_core::periph;

periph::singular! {
    #[doc(hidden)]
    pub macro periph_thr_inner;

    /// Registers for Drone threads.
    pub struct ThrPeriph;

    crate::map::reg;
    crate::map::periph::thr;

    SCB {
        CCR;
    }
}

// Workaround the `macro_expanded_macro_exports_accessed_by_absolute_paths`
// error.
#[doc(hidden)]
#[macro_export]
macro_rules! periph_thr {
    ($($tt:tt)*) => {
        $crate::periph_thr_inner!($($tt)*);
    };
}

/// Extracts Drone thread register tokens.
#[doc(inline)]
pub use crate::periph_thr;