Struct stm32f3xx_hal::rcc::Rcc[][src]

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();

Fields

ahb: AHB

AMBA High-performance Bus (AHB) registers

apb1: APB1

Advanced Peripheral Bus 1 (APB1) registers

apb2: APB2

Advanced Peripheral Bus 2 (APB2) registers

bdcr: BDCR

RCC Backup Domain

cfgr: CFGR

Clock configuration

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.