#[repr(u8)]pub enum ClkSel {
IPBUS = 0,
EXT_CLK = 1,
AUX_CLK = 2,
_RESERVED_3 = 3,
}Variants§
IPBUS = 0
The IPBus clock is used as the clock for the local prescaler and counter.
EXT_CLK = 1
EXT_CLK is used as the clock for the local prescaler and counter.
AUX_CLK = 2
Submodule 0’s clock (AUX_CLK) is used as the source clock for the local prescaler and counter. This setting should not be used in submodule 0 as it will force the clock to logic 0.
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Ord for ClkSel
impl Ord for ClkSel
Source§impl PartialOrd for ClkSel
impl PartialOrd for ClkSel
impl Copy for ClkSel
impl Eq for ClkSel
impl StructuralPartialEq for ClkSel
Auto Trait Implementations§
impl Freeze for ClkSel
impl RefUnwindSafe for ClkSel
impl Send for ClkSel
impl Sync for ClkSel
impl Unpin for ClkSel
impl UnwindSafe for ClkSel
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