Enum stm32wlxx_hal::pac::rcc::pllcfgr::PLLQ_A
#[repr(u8)]pub enum PLLQ_A {
Div2 = 1,
Div3 = 2,
Div4 = 3,
Div5 = 4,
Div6 = 5,
Div7 = 6,
Div8 = 7,
}
Available on crate feature
stm32wl5x_cm4
only.Expand description
Main PLL division factor for PLLQCLK
Value on reset: 1
Variants§
Div2 = 1
1: PLL = VCO/(N+1)
Div3 = 2
2: PLL = VCO/(N+1)
Div4 = 3
3: PLL = VCO/(N+1)
Div5 = 4
4: PLL = VCO/(N+1)
Div6 = 5
5: PLL = VCO/(N+1)
Div7 = 6
6: PLL = VCO/(N+1)
Div8 = 7
7: PLL = VCO/(N+1)
Trait Implementations§
impl Copy for PLLQ_A
impl StructuralPartialEq for PLLQ_A
Auto Trait Implementations§
impl RefUnwindSafe for PLLQ_A
impl Send for PLLQ_A
impl Sync for PLLQ_A
impl Unpin for PLLQ_A
impl UnwindSafe for PLLQ_A
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more