Struct capsules_core::virtualizers::virtual_adc::AdcDevice

source ·
pub struct AdcDevice<'a, A: Adc<'a>> { /* private fields */ }
Expand description

Virtual ADC device

Implementations§

source§

impl<'a, A: Adc<'a>> AdcDevice<'a, A>

source

pub const fn new( mux: &'a MuxAdc<'a, A>, channel: A::Channel ) -> AdcDevice<'a, A>

source

pub fn add_to_mux(&'a self)

Trait Implementations§

source§

impl<'a, A: Adc<'a>> AdcChannel<'a> for AdcDevice<'a, A>

source§

fn sample(&self) -> Result<(), ErrorCode>

Request a single ADC sample on a particular channel. Used for individual samples that have no timing requirements. All ADC samples will be the raw ADC value left-justified in the u16.
source§

fn stop_sampling(&self) -> Result<(), ErrorCode>

Stop a sampling operation. Can be used to stop any simple or high-speed sampling operation. No further callbacks will occur.
source§

fn sample_continuous(&self) -> Result<(), ErrorCode>

Request repeated ADC samples on a particular channel. Callbacks will occur at the given frequency with low jitter and can be set to any frequency supported by the chip implementation. However callbacks may be limited based on how quickly the system can service individual samples, leading to missed samples at high frequencies. All ADC samples will be the raw ADC value left-justified in the u16.
source§

fn get_resolution_bits(&self) -> usize

Function to ask the ADC how many bits of resolution are in the samples it is returning.
source§

fn get_voltage_reference_mv(&self) -> Option<usize>

Function to ask the ADC what reference voltage it used when taking the samples. This allows the user of this interface to calculate an actual voltage from the ADC reading. Read more
source§

fn set_client(&self, client: &'a dyn Client)

source§

impl<'a, A: Adc<'a>> ListNode<'a, AdcDevice<'a, A>> for AdcDevice<'a, A>

source§

fn next(&'a self) -> &'a ListLink<'a, AdcDevice<'a, A>>

Auto Trait Implementations§

§

impl<'a, A> !Freeze for AdcDevice<'a, A>

§

impl<'a, A> !RefUnwindSafe for AdcDevice<'a, A>

§

impl<'a, A> !Send for AdcDevice<'a, A>

§

impl<'a, A> !Sync for AdcDevice<'a, A>

§

impl<'a, A> Unpin for AdcDevice<'a, A>
where <A as Adc<'a>>::Channel: Unpin,

§

impl<'a, A> !UnwindSafe for AdcDevice<'a, A>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

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> SizedTypeProperties for T

source§

#[doc(hidden)] const IS_ZST: bool = _

🔬This is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
source§

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

§

type Error = Infallible

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

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

Performs the conversion.
source§

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.
source§

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

Performs the conversion.