pub enum INT_SOURCE_A {
FILTER_INT = 0,
RAW_INT = 1,
}Expand description
Select which Analog comparator output (filtered our un-filtered) is used for interrupt detection.
Value on reset: 0
Variants§
FILTER_INT = 0
0: Select Analog Comparator filtered output as input for interrupt detection.
RAW_INT = 1
1: Select Analog Comparator raw output (unfiltered) as input for interrupt detection. Must be used when Analog comparator is used as wake up source in Power down mode.
Trait Implementations§
Source§impl Clone for INT_SOURCE_A
impl Clone for INT_SOURCE_A
Source§fn clone(&self) -> INT_SOURCE_A
fn clone(&self) -> INT_SOURCE_A
Returns a duplicate 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 INT_SOURCE_A
impl Debug for INT_SOURCE_A
Source§impl From<INT_SOURCE_A> for bool
impl From<INT_SOURCE_A> for bool
Source§fn from(variant: INT_SOURCE_A) -> Self
fn from(variant: INT_SOURCE_A) -> Self
Converts to this type from the input type.
Source§impl PartialEq for INT_SOURCE_A
impl PartialEq for INT_SOURCE_A
impl Copy for INT_SOURCE_A
impl StructuralPartialEq for INT_SOURCE_A
Auto Trait Implementations§
impl Freeze for INT_SOURCE_A
impl RefUnwindSafe for INT_SOURCE_A
impl Send for INT_SOURCE_A
impl Sync for INT_SOURCE_A
impl Unpin for INT_SOURCE_A
impl UnwindSafe for INT_SOURCE_A
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