Trait DmaExt

Source
pub trait DmaExt {
    type Channels;

    // Required method
    fn split(self, ahb: &mut AHB) -> Self::Channels;
}
Expand description

Extension trait to split a DMA peripheral into independent channels

Required Associated Types§

Source

type Channels

The type to split the DMA into

Required Methods§

Source

fn split(self, ahb: &mut AHB) -> Self::Channels

Split the DMA into independent channels

Implementors§