Trait Target

Source
pub trait Target {
    // Provided methods
    fn enable_dma(&mut self) { ... }
    fn disable_dma(&mut self) { ... }
}
Expand description

Trait implemented by DMA targets.

Provided Methods§

Source

fn enable_dma(&mut self)

Enable DMA on the target

Source

fn disable_dma(&mut self)

Disable DMA on the target

Implementors§

Source§

impl<Usart, Pins> Target for Serial<Usart, Pins>
where Usart: Instance + Dma,