Struct esp32c2_hal::adc::AdcCalBasic
source · pub struct AdcCalBasic<ADCI> { /* private fields */ }
Expand description
Basic ADC calibration scheme
Basic calibration is related to setting some initial bias value in ADC. Such values usually is stored in efuse bit fields but also can be measured in runtime by connecting ADC input to ground internally a fallback when it is not available.
Trait Implementations§
source§impl<ADCI> AdcCalScheme<ADCI> for AdcCalBasic<ADCI>where
ADCI: AdcCalEfuse + RegisterAccess,
impl<ADCI> AdcCalScheme<ADCI> for AdcCalBasic<ADCI>where ADCI: AdcCalEfuse + RegisterAccess,
source§impl<ADCI> Clone for AdcCalBasic<ADCI>where
ADCI: Clone,
impl<ADCI> Clone for AdcCalBasic<ADCI>where ADCI: Clone,
source§fn clone(&self) -> AdcCalBasic<ADCI>
fn clone(&self) -> AdcCalBasic<ADCI>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl<ADCI> Copy for AdcCalBasic<ADCI>where ADCI: Copy,
Auto Trait Implementations§
impl<ADCI> RefUnwindSafe for AdcCalBasic<ADCI>where ADCI: RefUnwindSafe,
impl<ADCI> Send for AdcCalBasic<ADCI>where ADCI: Send,
impl<ADCI> Sync for AdcCalBasic<ADCI>where ADCI: Sync,
impl<ADCI> Unpin for AdcCalBasic<ADCI>where ADCI: Unpin,
impl<ADCI> UnwindSafe for AdcCalBasic<ADCI>where ADCI: 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