Struct lpc55_hal::peripherals::adc::Adc[][src]

pub struct Adc<State = Unknown> {
    pub _state: State,
    // some fields omitted
}

Fields

_state: State

Implementations

impl Adc[src]

pub unsafe fn steal() -> Self[src]

impl<State> Adc<State>[src]

pub fn release(self) -> ADC0[src]

impl<State> Adc<State>[src]

pub fn arm_normal_channel(&mut self, channel_id: u8)[src]

pub fn arm_comparator_channel(&mut self, channel_id: u8)[src]

pub fn set_threshold(&mut self, low: u16, high: u16)[src]

pub fn cancel_compare(&mut self)[src]

pub fn configure(self, config: Config) -> Adc<State>[src]

pub fn enabled(self, pmc: &mut Pmc, syscon: &mut Syscon) -> Adc<Enabled>[src]

pub fn disabled(self, syscon: &mut Syscon) -> Adc<Disabled>[src]

impl<State> Adc<State>[src]

pub fn read(
    &mut self,
    pin: &Pin<impl PinId, Analog<Input>>
) -> Result<u16, Underflow>
[src]

Trait Implementations

impl<State> Deref for Adc<State>[src]

type Target = RegisterBlock

The resulting type after dereferencing.

impl From<ADC0> for Adc[src]

Auto Trait Implementations

impl<State> Send for Adc<State> where
    State: Send

impl<State = Unknown> !Sync for Adc<State>

impl<State> Unpin for Adc<State> where
    State: Unpin

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.