pub struct Rcc {
pub ahb: AHB,
pub apb1: APB1,
pub apb2: APB2,
pub bdcr: BDCR,
pub cfgr: CFGR,
}Expand description
Constrained RCC peripheral
An instance of this struct is acquired by calling the
constrain function on the
RCC struct.
let dp = pac::Peripherals::take().unwrap();
let rcc = dp.RCC.constrain();
AMBA High-performance Bus (AHB) registers
Advanced Peripheral Bus 1 (APB1) registers
Advanced Peripheral Bus 2 (APB2) registers
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.