[−][src]Struct stm32f0xx_hal::adc::Adc
Analog to Digital converter interface
Methods
impl Adc[src]
pub fn new(adc: ADC, rcc: &mut Rcc) -> Self[src]
Init a new Adc
Sets all configurable parameters to defaults, enables the HSI14 clock for the ADC if it is not already enabled and performs a boot time calibration. As such this method may take an appreciable time to run.
pub fn save_cfg(&mut self) -> StoredConfig[src]
Saves a copy of the current ADC config
pub fn restore_cfg(&mut self, cfg: StoredConfig)[src]
Restores a stored config
pub fn default_cfg(&mut self) -> StoredConfig[src]
Resets the ADC config to default, returning the existing config as a stored config.
pub fn set_sample_time(&mut self, t_samp: AdcSampleTime)[src]
Set the Adc sampling time
Options can be found in AdcSampleTime.
pub fn set_align(&mut self, align: AdcAlign)[src]
Set the Adc result alignment
Options can be found in AdcAlign.
pub fn set_precision(&mut self, precision: AdcPrecision)[src]
Set the Adc precision
Options can be found in AdcPrecision.
pub fn max_sample(&self) -> u16[src]
Returns the largest possible sample value for the current settings
pub fn read_abs_mv<PIN: Channel<Adc, ID = u8>>(&mut self, pin: &mut PIN) -> u16[src]
Read the value of a channel and converts the result to milli-volts
Trait Implementations
impl Channel<Adc> for PA0<Analog>[src]
impl Channel<Adc> for PA1<Analog>[src]
impl Channel<Adc> for PA2<Analog>[src]
impl Channel<Adc> for PA3<Analog>[src]
impl Channel<Adc> for PA4<Analog>[src]
impl Channel<Adc> for PA5<Analog>[src]
impl Channel<Adc> for PA6<Analog>[src]
impl Channel<Adc> for PA7<Analog>[src]
impl Channel<Adc> for PB0<Analog>[src]
impl Channel<Adc> for PB1<Analog>[src]
impl Channel<Adc> for VTemp[src]
impl Channel<Adc> for VRef[src]
impl Channel<Adc> for VBat[src]
impl<WORD, PIN> OneShot<Adc, WORD, PIN> for Adc where
WORD: From<u16>,
PIN: Channel<Adc, ID = u8>, [src]
WORD: From<u16>,
PIN: Channel<Adc, ID = u8>,
Auto Trait Implementations
Blanket Implementations
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
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>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
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>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self