pub enum CCRDYW {
Clear = 1,
}
Expand description
Channel Configuration Ready flag This flag bit is set by hardware when the channel configuration is applied after programming to ADC_CHSELR register or changing CHSELRMOD or SCANDIR. It is cleared by software by programming it to it. Note: When the software configures the channels (by programming ADC_CHSELR or changing CHSELRMOD or SCANDIR), it must wait until the CCRDY flag rises before configuring again or starting conversions, otherwise the new configuration (or the START bit) is ignored. Once the flag is asserted, if the software needs to configure again the channels, it must clear the CCRDY flag before proceeding with a new configuration.
Value on reset: 0
Variants§
Clear = 1
1: Clear the channel configuration flag
Trait Implementations§
impl Copy for CCRDYW
impl Eq for CCRDYW
impl StructuralPartialEq for CCRDYW
Auto Trait Implementations§
impl Freeze for CCRDYW
impl RefUnwindSafe for CCRDYW
impl Send for CCRDYW
impl Sync for CCRDYW
impl Unpin for CCRDYW
impl UnwindSafe for CCRDYW
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