#[repr(u32)]pub enum DmaHardwareSource {
Lpuart1Transfer = 2,
Lpuart1Receive = 3,
Lpuart2Transfer = 66,
Lpuart2Receive = 67,
}
Expand description
DMA hardware sources.
Extend this to add support for more DMA-powered peripherals. To understand where the numbers come from, see Chapter 4, DMA Mux, to find the DMA request signals (iMXRT1060RM, Rev 2).
Variants§
Trait Implementations§
Source§impl Clone for DmaHardwareSource
impl Clone for DmaHardwareSource
Source§fn clone(&self) -> DmaHardwareSource
fn clone(&self) -> DmaHardwareSource
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 moreSource§impl PartialEq for DmaHardwareSource
impl PartialEq for DmaHardwareSource
impl Copy for DmaHardwareSource
impl Eq for DmaHardwareSource
impl StructuralPartialEq for DmaHardwareSource
Auto Trait Implementations§
impl Freeze for DmaHardwareSource
impl RefUnwindSafe for DmaHardwareSource
impl Send for DmaHardwareSource
impl Sync for DmaHardwareSource
impl Unpin for DmaHardwareSource
impl UnwindSafe for DmaHardwareSource
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