[][src]Enum esp_idf_bindgen::adc_i2s_encode_t

#[repr(u32)]pub enum adc_i2s_encode_t {
    ADC_ENCODE_12BIT,
    ADC_ENCODE_11BIT,
    ADC_ENCODE_MAX,
}

@brief ADC digital controller encode option.

@deprecated The ESP32S2 don't use I2S DMA. Call adc_digi_output_format_t instead.

Variants

ADC_ENCODE_12BIT

< ADC to DMA data format, , [15:12]-channel [11:0]-12 bits ADC data

ADC_ENCODE_11BIT

< ADC to DMA data format, [15]-unit, [14:11]-channel [10:0]-11 bits ADC data

ADC_ENCODE_MAX

Trait Implementations

impl Clone for adc_i2s_encode_t[src]

impl Copy for adc_i2s_encode_t[src]

impl Debug for adc_i2s_encode_t[src]

impl Eq for adc_i2s_encode_t[src]

impl Hash for adc_i2s_encode_t[src]

impl PartialEq<adc_i2s_encode_t> for adc_i2s_encode_t[src]

impl StructuralEq for adc_i2s_encode_t[src]

impl StructuralPartialEq for adc_i2s_encode_t[src]

Auto Trait Implementations

impl Send for adc_i2s_encode_t

impl Sync for adc_i2s_encode_t

impl Unpin for adc_i2s_encode_t

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, 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.