#[repr(u8)]pub enum Debfselect {
Div2 = 0,
Div4 = 1,
Div8 = 2,
Div16 = 3,
Div32 = 4,
Div64 = 5,
Div128 = 6,
Div256 = 7,
}
Expand description
Debounce Freqnuency
Value on reset: 0
Variants§
Div2 = 0
0: CLK_RTC_DEB = CLK_RTC/2
Div4 = 1
1: CLK_RTC_DEB = CLK_RTC/4
Div8 = 2
2: CLK_RTC_DEB = CLK_RTC/8
Div16 = 3
3: CLK_RTC_DEB = CLK_RTC/16
Div32 = 4
4: CLK_RTC_DEB = CLK_RTC/32
Div64 = 5
5: CLK_RTC_DEB = CLK_RTC/64
Div128 = 6
6: CLK_RTC_DEB = CLK_RTC/128
Div256 = 7
7: CLK_RTC_DEB = CLK_RTC/256
Trait Implementations§
Source§impl Clone for Debfselect
impl Clone for Debfselect
Source§fn clone(&self) -> Debfselect
fn clone(&self) -> Debfselect
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Debfselect
impl Debug for Debfselect
Source§impl From<Debfselect> for u8
impl From<Debfselect> for u8
Source§fn from(variant: Debfselect) -> Self
fn from(variant: Debfselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Debfselect
impl PartialEq for Debfselect
impl Copy for Debfselect
impl Eq for Debfselect
impl IsEnum for Debfselect
impl StructuralPartialEq for Debfselect
Auto Trait Implementations§
impl Freeze for Debfselect
impl RefUnwindSafe for Debfselect
impl Send for Debfselect
impl Sync for Debfselect
impl Unpin for Debfselect
impl UnwindSafe for Debfselect
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