Struct atmega_hal::pac::ADC

source ·
pub struct ADC { /* private fields */ }
Expand description

Analog-to-Digital Converter

Implementations§

source§

impl ADC

source

pub const PTR: *const RegisterBlock = {0x78 as *const avr_device::atmega328p::adc::RegisterBlock}

Pointer to the register block

source

pub const fn ptr() -> *const RegisterBlock

Return the pointer to the register block

Trait Implementations§

source§

impl AdcChannel<Atmega, ADC> for Gnd

source§

fn channel(&self) -> MUX_A

source§

impl AdcChannel<Atmega, ADC> for Pin<Analog, PC0>

source§

fn channel(&self) -> MUX_A

source§

impl AdcChannel<Atmega, ADC> for Pin<Analog, PC1>

source§

fn channel(&self) -> MUX_A

source§

impl AdcChannel<Atmega, ADC> for Pin<Analog, PC2>

source§

fn channel(&self) -> MUX_A

source§

impl AdcChannel<Atmega, ADC> for Pin<Analog, PC3>

source§

fn channel(&self) -> MUX_A

source§

impl AdcChannel<Atmega, ADC> for Pin<Analog, PC4>

source§

fn channel(&self) -> MUX_A

source§

impl AdcChannel<Atmega, ADC> for Pin<Analog, PC5>

source§

fn channel(&self) -> MUX_A

source§

impl AdcChannel<Atmega, ADC> for Temperature

source§

fn channel(&self) -> MUX_A

source§

impl AdcChannel<Atmega, ADC> for Vbg

source§

fn channel(&self) -> MUX_A

source§

impl AdcOps<Atmega> for ADC

§

type Channel = MUX_A

Channel ID type for this ADC.
§

type Settings = AdcSettings

Settings type for this ADC.
source§

fn raw_init(&mut self, settings: Self::Settings)

Initialize the ADC peripheral with the specified settings. Read more
source§

fn raw_read_adc(&self) -> u16

Read out the ADC data register. Read more
source§

fn raw_is_converting(&self) -> bool

Check whether the ADC is currently converting a signal. Read more
source§

fn raw_start_conversion(&mut self)

Start a conversion on the currently selected channel. Read more
source§

fn raw_set_channel(&mut self, channel: Self::Channel)

Set the multiplexer to a certain channel. Read more
source§

fn raw_enable_channel(&mut self, channel: Self::Channel)

Set the DIDR (Digital Input Disable) for a certain channel. Read more
source§

fn raw_disable_channel(&mut self, channel: Self::Channel)

Clear the DIDR (Digital Input Disable) for a certain channel. Read more
source§

impl Debug for ADC

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Deref for ADC

§

type Target = RegisterBlock

The resulting type after dereferencing.
source§

fn deref(&self) -> &<ADC as Deref>::Target

Dereferences the value.
source§

impl Send for ADC

Auto Trait Implementations§

§

impl RefUnwindSafe for ADC

§

impl !Sync for ADC

§

impl Unpin for ADC

§

impl UnwindSafe for ADC

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