#[repr(u8)]pub enum FilterCnt {
FILTER_CNT_0 = 0,
FILTER_CNT_1 = 1,
FILTER_CNT_2 = 2,
FILTER_CNT_3 = 3,
FILTER_CNT_4 = 4,
FILTER_CNT_5 = 5,
FILTER_CNT_6 = 6,
FILTER_CNT_7 = 7,
}Variants§
FILTER_CNT_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.
FILTER_CNT_1 = 1
1 consecutive sample must agree (comparator output is simply sampled).
FILTER_CNT_2 = 2
2 consecutive samples must agree.
FILTER_CNT_3 = 3
3 consecutive samples must agree.
FILTER_CNT_4 = 4
4 consecutive samples must agree.
FILTER_CNT_5 = 5
5 consecutive samples must agree.
FILTER_CNT_6 = 6
6 consecutive samples must agree.
FILTER_CNT_7 = 7
7 consecutive samples must agree.
Implementations§
Trait Implementations§
Source§impl Ord for FilterCnt
impl Ord for FilterCnt
Source§impl PartialOrd for FilterCnt
impl PartialOrd for FilterCnt
impl Copy for FilterCnt
impl Eq 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