pub enum ADCALW {
StartCalibration = 1,
}
Expand description
ADC calibration This bit is set by software to start the calibration of the ADC. It is cleared by hardware after calibration is complete. Note: The software is allowed to set ADCAL only when the ADC is disabled (ADCAL=0, ADSTART=0, ADSTP=0, ADDIS=0 and ADEN=0). The software is allowed to update the calibration factor by writing ADC_CALFACT only when ADEN=1 and ADSTART=0 (ADC enabled and no conversion is ongoing).
Value on reset: 0
Variants§
StartCalibration = 1
1: Start the ADC calibration sequence
Trait Implementations§
impl Copy for ADCALW
impl Eq for ADCALW
impl StructuralPartialEq for ADCALW
Auto Trait Implementations§
impl Freeze for ADCALW
impl RefUnwindSafe for ADCALW
impl Send for ADCALW
impl Sync for ADCALW
impl Unpin for ADCALW
impl UnwindSafe for ADCALW
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