Enum FilterCnt
#[repr(u8)]pub enum FilterCnt {
_000 = 0,
_001 = 1,
_010 = 2,
_011 = 3,
_100 = 4,
_101 = 5,
_110 = 6,
_111 = 7,
}Expand description
Filter Sample Count
Value on reset: 0
Variants§
_000 = 0
0: Filter is disabled. If SE = 1, then COUT is a logic zero (this is not a legal state, and is not recommended). If SE = 0, COUT = COUTA.
_001 = 1
1: 1 consecutive sample must agree (comparator output is simply sampled).
_010 = 2
2: 2 consecutive samples must agree.
_011 = 3
3: 3 consecutive samples must agree.
_100 = 4
4: 4 consecutive samples must agree.
_101 = 5
5: 5 consecutive samples must agree.
_110 = 6
6: 6 consecutive samples must agree.
_111 = 7
7: 7 consecutive samples must agree.
Trait Implementations§
impl Copy for FilterCnt
impl Eq for FilterCnt
impl IsEnum for FilterCnt
impl StructuralPartialEq for FilterCnt
Auto Trait Implementations§
impl Freeze for FilterCnt
impl RefUnwindSafe for FilterCnt
impl Send for FilterCnt
impl Sync for FilterCnt
impl Unpin for FilterCnt
impl UnwindSafe for FilterCnt
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