#[repr(u8)]pub enum DMA {
Disabled = 0,
Mode1 = 1,
Mode2 = 2,
Mode3 = 3,
}
Expand description
Direct memory access mode for multi ADC mode
Value on reset: 0
Variants§
Disabled = 0
0: DMA mode disabled
Mode1 = 1
1: DMA mode 1 enabled (2 / 3 half-words one by one - 1 then 2 then 3)
Mode2 = 2
2: DMA mode 2 enabled (2 / 3 half-words by pairs - 2&1 then 1&3 then 3&2)
Mode3 = 3
3: DMA mode 3 enabled (2 / 3 half-words by pairs - 2&1 then 1&3 then 3&2)
Trait Implementations§
impl Copy for DMA
impl Eq for DMA
impl IsEnum for DMA
impl StructuralPartialEq for DMA
Auto Trait Implementations§
impl Freeze for DMA
impl RefUnwindSafe for DMA
impl Send for DMA
impl Sync for DMA
impl Unpin for DMA
impl UnwindSafe for DMA
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