pub enum CM {
Continuous = 0,
Snapshot = 1,
}
Expand description
Capture mode
Value on reset: 0
Variants§
Continuous = 0
0: Continuous grab mode - The received data are transferred into the destination memory through the DMA. The buffer location and mode (linear or circular buffer) is controlled through the system DMA
Snapshot = 1
1: Snapshot mode (single frame) - Once activated, the interface waits for the start of frame and then transfers a single frame through the DMA. At the end of the frame, the CAPTURE bit is automatically reset
Trait Implementations§
impl Copy for CM
impl Eq for CM
impl StructuralPartialEq for CM
Auto Trait Implementations§
impl Freeze for CM
impl RefUnwindSafe for CM
impl Send for CM
impl Sync for CM
impl Unpin for CM
impl UnwindSafe for CM
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