Struct rp2040_pac2::adc::Adc[][src]

pub struct Adc(pub *mut u8);
[]

Control and data interface to SAR ADC

Implementations

impl Adc[src][]

pub fn cs(self) -> Reg<Cs, RW>[src][]

ADC Control and Status

pub fn result(self) -> Reg<Result, RW>[src][]

Result of most recent ADC conversion

pub fn fcs(self) -> Reg<Fcs, RW>[src][]

FIFO control and status

pub fn fifo(self) -> Reg<Fifo, RW>[src][]

Conversion result FIFO

pub fn div(self) -> Reg<Div, RW>[src][]

Clock divider. If non-zero, CS_START_MANY will start conversions at regular intervals rather than back-to-back. The divider is reset when either of these fields are written. Total period is 1 + INT + FRAC / 256

pub fn intr(self) -> Reg<Int, RW>[src][]

Raw Interrupts

pub fn inte(self) -> Reg<Int, RW>[src][]

Interrupt Enable

pub fn intf(self) -> Reg<Int, RW>[src][]

Interrupt Force

pub fn ints(self) -> Reg<Int, RW>[src][]

Interrupt status after masking & forcing

Trait Implementations

impl Clone for Adc[src][+]

impl Copy for Adc[src]

impl Send for Adc[src]

impl Sync for Adc[src]

Auto Trait Implementations

impl Unpin for Adc

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.