pub enum ADRDYIE {
Disabled = 0,
Enabled = 1,
}
Expand description
ADC ready interrupt enable This bit is set and cleared by software to enable/disable the ADC Ready interrupt. Note: The software is allowed to write this bit only when ADSTART bit is cleared to 0 (this ensures that no conversion is ongoing).
Value on reset: 0
Variants§
Disabled = 0
0: ADRDY interrupt disabled
Enabled = 1
1: ADRDY interrupt enabled. An interrupt is generated when the ADRDY bit is set.
Trait Implementations§
impl Copy for ADRDYIE
impl Eq for ADRDYIE
impl StructuralPartialEq for ADRDYIE
Auto Trait Implementations§
impl Freeze for ADRDYIE
impl RefUnwindSafe for ADRDYIE
impl Send for ADRDYIE
impl Sync for ADRDYIE
impl Unpin for ADRDYIE
impl UnwindSafe for ADRDYIE
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