Enum atsam4n8c_pac::adc::emr::OSR_A[][src]

#[repr(u8)]pub enum OSR_A {
    NO_AVERAGE,
    OSR4,
    OSR16,
}

Over Sampling Rate

Value on reset: 0

Variants

NO_AVERAGE

0: no averaging. ADC sample rate is maximum.

OSR4

1: 1-bit enhanced resolution by interpolation. ADC sample rate divided by 4.

OSR16

2: 2-bit enhanced resolution by interpolation. ADC sample rate divided by 16.

Trait Implementations

impl Clone for OSR_A[src]

impl Copy for OSR_A[src]

impl Debug for OSR_A[src]

impl PartialEq<OSR_A> for OSR_A[src]

impl StructuralPartialEq for OSR_A[src]

Auto Trait Implementations

impl Send for OSR_A

impl Sync for OSR_A

impl Unpin for OSR_A

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.