pub struct Adc<ADC> { /* private fields */ }
Expand description
Adc
encapsulates the device ADC
Implementations§
Source§impl Adc<Adc0>
impl Adc<Adc0>
pub fn adc0( adc: Adc0, mclk: &mut Mclk, clocks: &mut GenericClockController, gclk: Genselect, ) -> Self
Sourcepub fn samples(&mut self, samples: SampleRate)
pub fn samples(&mut self, samples: SampleRate)
Set the sample rate
Sourcepub fn prescaler(&mut self, prescaler: Prescaler)
pub fn prescaler(&mut self, prescaler: Prescaler)
Set the prescaler for adjusting the clock relative to the system clock
Sourcepub fn resolution(&mut self, resolution: Resolution)
pub fn resolution(&mut self, resolution: Resolution)
Set the input resolution
Source§impl Adc<Adc1>
impl Adc<Adc1>
pub fn adc1( adc: Adc1, mclk: &mut Mclk, clocks: &mut GenericClockController, gclk: Genselect, ) -> Self
Sourcepub fn samples(&mut self, samples: SampleRate)
pub fn samples(&mut self, samples: SampleRate)
Set the sample rate
Sourcepub fn prescaler(&mut self, prescaler: Prescaler)
pub fn prescaler(&mut self, prescaler: Prescaler)
Set the prescaler for adjusting the clock relative to the system clock
Sourcepub fn resolution(&mut self, resolution: Resolution)
pub fn resolution(&mut self, resolution: Resolution)
Set the input resolution
Trait Implementations§
Source§impl<C> From<Adc<Adc0>> for InterruptAdc<Adc0, C>where
C: ConversionMode<Adc0>,
impl<C> From<Adc<Adc0>> for InterruptAdc<Adc0, C>where
C: ConversionMode<Adc0>,
Source§impl<C> From<Adc<Adc1>> for InterruptAdc<Adc1, C>where
C: ConversionMode<Adc1>,
impl<C> From<Adc<Adc1>> for InterruptAdc<Adc1, C>where
C: ConversionMode<Adc1>,
Auto Trait Implementations§
impl<ADC> Freeze for Adc<ADC>where
ADC: Freeze,
impl<ADC> RefUnwindSafe for Adc<ADC>where
ADC: RefUnwindSafe,
impl<ADC> Send for Adc<ADC>where
ADC: Send,
impl<ADC> Sync for Adc<ADC>where
ADC: Sync,
impl<ADC> Unpin for Adc<ADC>where
ADC: Unpin,
impl<ADC> UnwindSafe for Adc<ADC>where
ADC: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more