Enum stm32h7xx_hal::rcc::PllConfigStrategy[][src]

pub enum PllConfigStrategy {
    Normal,
    Iterative,
    Fractional,
    FractionalNotLess,
}

Strategies for configuring a Phase Locked Loop (PLL)

Variants

Normal

VCOL, highest PFD frequency, highest VCO frequency

Iterative

VCOH, choose PFD frequency for accuracy, highest VCO frequency

Fractional

VCOH, choose PFD frequency for accuracy, highest VCO frequency Uses fractional mode to precisely set the P clock

FractionalNotLess

VCOH, choose PFD frequency for accuracy, highest VCO frequency Uses fractional mode to precisely set the P clock not less than target frequency

Trait Implementations

impl Clone for PllConfigStrategy[src]

impl Copy for PllConfigStrategy[src]

impl PartialEq<PllConfigStrategy> for PllConfigStrategy[src]

impl StructuralPartialEq for PllConfigStrategy[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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, 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.