DMAExt

Trait DMAExt 

Source
pub trait DMAExt: Sealed {
    // Required methods
    fn split(self, resets: &mut RESETS) -> Channels;
    fn dyn_split(self, resets: &mut RESETS) -> DynChannels;
}
Expand description

DMA unit.

Required Methods§

Source

fn split(self, resets: &mut RESETS) -> Channels

Splits the DMA unit into its individual channels.

Source

fn dyn_split(self, resets: &mut RESETS) -> DynChannels

Splits the DMA unit into its individual channels with runtime ownership

Implementors§