[][src]Struct stm32f1xx_hal::dma::dma1::C2

pub struct C2 { /* fields omitted */ }

A singleton that represents a single DMAx channel (channel X in this case)

This singleton has exclusive access to the registers of the DMAx channel X

Methods

impl C2[src]

pub fn set_peripheral_address(&mut self, address: u32, inc: bool)[src]

Associated peripheral address

inc indicates whether the address will be incremented after every byte transfer

pub fn set_memory_address(&mut self, address: u32, inc: bool)[src]

address where from/to data will be read/write

inc indicates whether the address will be incremented after every byte transfer

pub fn set_transfer_length(&mut self, len: usize)[src]

Number of bytes to transfer

pub fn start(&mut self)[src]

Starts the DMA transfer

pub fn stop(&mut self)[src]

Stops the DMA transfer

pub fn in_progress(&self) -> bool[src]

Returns true if there's a transfer in progress

impl C2[src]

pub fn listen(&mut self, event: Event)[src]

pub fn unlisten(&mut self, event: Event)[src]

pub fn ch(&mut self) -> &CH[src]

pub fn isr(&self) -> R[src]

pub fn ifcr(&self) -> &IFCR[src]

pub fn get_ndtr(&self) -> u32[src]

Auto Trait Implementations

impl Send for C2

impl Sync for C2

impl Unpin for C2

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.