Enum stm32_metapac::timer::vals::Icf
#[repr(u8)]pub enum Icf {
Show 16 variants
NOFILTER = 0,
FCK_INT_N2 = 1,
FCK_INT_N4 = 2,
FCK_INT_N8 = 3,
FDTS_DIV2_N6 = 4,
FDTS_DIV2_N8 = 5,
FDTS_DIV4_N6 = 6,
FDTS_DIV4_N8 = 7,
FDTS_DIV8_N6 = 8,
FDTS_DIV8_N8 = 9,
FDTS_DIV16_N5 = 10,
FDTS_DIV16_N6 = 11,
FDTS_DIV16_N8 = 12,
FDTS_DIV32_N5 = 13,
FDTS_DIV32_N6 = 14,
FDTS_DIV32_N8 = 15,
}
Variants§
NOFILTER = 0
No filter, sampling is done at fDTS
FCK_INT_N2 = 1
fSAMPLING=fCK_INT, N=2
FCK_INT_N4 = 2
fSAMPLING=fCK_INT, N=4
FCK_INT_N8 = 3
fSAMPLING=fCK_INT, N=8
FDTS_DIV2_N6 = 4
fSAMPLING=fDTS/2, N=6
FDTS_DIV2_N8 = 5
fSAMPLING=fDTS/2, N=8
FDTS_DIV4_N6 = 6
fSAMPLING=fDTS/4, N=6
FDTS_DIV4_N8 = 7
fSAMPLING=fDTS/4, N=8
FDTS_DIV8_N6 = 8
fSAMPLING=fDTS/8, N=6
FDTS_DIV8_N8 = 9
fSAMPLING=fDTS/8, N=8
FDTS_DIV16_N5 = 10
fSAMPLING=fDTS/16, N=5
FDTS_DIV16_N6 = 11
fSAMPLING=fDTS/16, N=6
FDTS_DIV16_N8 = 12
fSAMPLING=fDTS/16, N=8
FDTS_DIV32_N5 = 13
fSAMPLING=fDTS/32, N=5
FDTS_DIV32_N6 = 14
fSAMPLING=fDTS/32, N=6
FDTS_DIV32_N8 = 15
fSAMPLING=fDTS/32, N=8
Implementations§
Trait Implementations§
§impl Ord for Icf
impl Ord for Icf
§impl PartialOrd for Icf
impl PartialOrd for Icf
§fn partial_cmp(&self, other: &Icf) -> Option<Ordering>
fn partial_cmp(&self, other: &Icf) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Icf
impl Eq for Icf
impl StructuralPartialEq for Icf
Auto Trait Implementations§
impl Freeze for Icf
impl RefUnwindSafe for Icf
impl Send for Icf
impl Sync for Icf
impl Unpin for Icf
impl UnwindSafe for Icf
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