pub trait Instance: Deref<Target = DMARegisterBlock> + Sealed {
    fn ptr() -> *const DMARegisterBlock;
}
Expand description

Trait that represents an instance of a DMA peripheral.

Required Methods

Gives a pointer to the RegisterBlock.

Implementors