Struct Adc

Source
pub struct Adc<'d, ADC, Dm: DriverMode> { /* private fields */ }
Available on crate feature unstable only.
Expand description

Analog-to-Digital Converter peripheral driver.

Implementations§

Source§

impl<'d, ADCI> Adc<'d, ADCI, Blocking>
where ADCI: RegisterAccess + 'd,

Source

pub fn new(adc_instance: ADCI, config: AdcConfig<ADCI>) -> Self

Configure a given ADC instance using the provided configuration, and initialize the ADC for use

Source

pub fn read_oneshot<PIN>( &mut self, _pin: &mut AdcPin<PIN, ADCI>, ) -> Result<u16, ()>
where PIN: AdcChannel,

Request that the ADC begin a conversion on the specified pin

This method takes an AdcPin reference, as it is expected that the ADC will be able to sample whatever channel underlies the pin.

Source§

impl<ADC1> Adc<'_, ADC1, Blocking>

Source

pub fn enable_hall_sensor()

Enable the Hall sensor

Source

pub fn disable_hall_sensor()

Disable the Hall sensor

Auto Trait Implementations§

§

impl<'d, ADC, Dm> Freeze for Adc<'d, ADC, Dm>
where ADC: Freeze,

§

impl<'d, ADC, Dm> RefUnwindSafe for Adc<'d, ADC, Dm>
where ADC: RefUnwindSafe, Dm: RefUnwindSafe,

§

impl<'d, ADC, Dm> Send for Adc<'d, ADC, Dm>
where ADC: Send, Dm: Send,

§

impl<'d, ADC, Dm> Sync for Adc<'d, ADC, Dm>
where ADC: Sync, Dm: Sync,

§

impl<'d, ADC, Dm> Unpin for Adc<'d, ADC, Dm>
where ADC: Unpin, Dm: Unpin,

§

impl<'d, ADC, Dm> !UnwindSafe for Adc<'d, ADC, Dm>

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.