[][src]Struct alt_stm32f30x_hal::rcc::CFGR

pub struct CFGR { /* fields omitted */ }

Clock configuration

Methods

impl CFGR[src]

pub fn hse<F>(self, freq: F, divider: HseDivider, bypass: HseBypass) -> Self where
    F: Into<Hertz<u32>>, 
[src]

Sets a HseConfig that checks that the HSE divider is valid and if the clock is in bypass mode

pub fn hclk<F>(self, freq: F) -> Self where
    F: Into<Hertz<u32>>, 
[src]

Sets a frequency for the AHB bus

pub fn pclk1<F>(self, freq: F) -> Self where
    F: Into<Hertz<u32>>, 
[src]

Sets a frequency for the APB1 bus

pub fn pclk2<F>(self, freq: F) -> Self where
    F: Into<Hertz<u32>>, 
[src]

Sets a frequency for the APB2 bus

pub fn sysclk<F>(self, freq: F) -> Self where
    F: Into<Hertz<u32>>, 
[src]

Sets the system (core) frequency

pub fn freeze(self, acr: &mut ACR) -> Clocks[src]

Freezes the clock configuration, making it effective

Auto Trait Implementations

impl Send for CFGR

impl Sync for CFGR

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self