#[repr(u8)]pub enum PllDivSel {
PLL_DIV_15 = 0,
PLL_DIV_16 = 1,
PLL_DIV_20 = 2,
_RESERVED_3 = 3,
PLL_DIV_24 = 4,
PLL_DIV_25 = 5,
PLL_DIV_30 = 6,
PLL_DIV_32 = 7,
}Variants§
PLL_DIV_15 = 0
Configure for a 32 MHz input clock (divide by 15)
PLL_DIV_16 = 1
Configure for a 30 MHz input clock (divide by 16)
PLL_DIV_20 = 2
Configure for a 24 MHz input clock (divide by 20)
_RESERVED_3 = 3
PLL_DIV_24 = 4
Configure for a 20 MHz input clock (divide by 24)
PLL_DIV_25 = 5
Configure for a 19.2 MHz input clock (divide by 25)
PLL_DIV_30 = 6
Configure for a 16 MHz input clock (divide by 30)
PLL_DIV_32 = 7
Configure for a 12 MHz input clock (divide by 40)
Implementations§
Trait Implementations§
Source§impl Ord for PllDivSel
impl Ord for PllDivSel
Source§impl PartialOrd for PllDivSel
impl PartialOrd for PllDivSel
impl Copy for PllDivSel
impl Eq for PllDivSel
impl StructuralPartialEq for PllDivSel
Auto Trait Implementations§
impl Freeze for PllDivSel
impl RefUnwindSafe for PllDivSel
impl Send for PllDivSel
impl Sync for PllDivSel
impl Unpin for PllDivSel
impl UnwindSafe for PllDivSel
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