Enum Atcksel
#[repr(u8)]pub enum Atcksel {
Div1 = 0,
Div2 = 1,
Div4 = 2,
_RESERVED_3 = 3,
_RESERVED_4 = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
Div128 = 7,
}Variants§
Div1 = 0
RTCCLK is selected
Div2 = 1
RTCCLK/2 is selected when (PREDIV_A+1) = 128 (actually selects 1st flip flop output)
Div4 = 2
RTCCLK/4 is selected when (PREDIV_A+1) = 128 (actually selects 2nd flip flop output)
_RESERVED_3 = 3
_RESERVED_4 = 4
_RESERVED_5 = 5
_RESERVED_6 = 6
Div128 = 7
RTCCLK/128 is selected when (PREDIV_A+1) = 128 (actually selects 7th flip flop output)
Implementations§
Trait Implementations§
impl Copy for Atcksel
impl Eq for Atcksel
§impl Ord for Atcksel
impl Ord for Atcksel
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialOrd for Atcksel
impl PartialOrd for Atcksel
impl StructuralPartialEq for Atcksel
Auto Trait Implementations§
impl Freeze for Atcksel
impl RefUnwindSafe for Atcksel
impl Send for Atcksel
impl Sync for Atcksel
impl Unpin for Atcksel
impl UnsafeUnpin for Atcksel
impl UnwindSafe for Atcksel
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