Trait drone_stm32f1::reg::rcc::CrBits [] [src]

pub trait CrBits<T>: RawBits<Cr, T> {
    fn pll_enable(&mut self, enable: bool) -> &mut Self { ... }
fn hse_enable(&mut self, enable: bool) -> &mut Self { ... }
fn hse_bypass(&mut self, bypass: bool) -> &mut Self { ... }
fn pll_ready(&self) -> bool { ... }
fn hse_ready(&self) -> bool { ... }
fn css_enable(&mut self, enable: bool) -> &mut Self { ... } }

Clock control register bits.

Provided Methods

PLL enable.

HSE clock enable.

External high-speed clock bypass.

PLL clock ready flag.

External high-speed clock ready flag.

Clock security system enable.

Implementors