[][src]Trait stm32f3xx_hal::dma::Channel

pub trait Channel: Channel {
    fn event_occurred(&self, event: Event) -> bool;
fn clear_event(&mut self, event: Event); fn reset(&mut self) { ... }
fn set_peripheral_address(&mut self, address: u32, inc: Increment) { ... }
fn set_memory_address(&mut self, address: u32, inc: Increment) { ... }
fn set_transfer_length(&mut self, len: u16) { ... }
fn set_word_size<W>(&mut self) { ... }
fn set_priority_level(&mut self, priority: Priority) { ... }
fn set_direction(&mut self, direction: Direction) { ... }
fn listen(&mut self, event: Event) { ... }
fn unlisten(&mut self, event: Event) { ... }
fn enable(&mut self) { ... }
fn disable(&mut self) { ... }
fn is_enabled(&self) -> bool { ... } }

Trait implemented by all DMA channels

Required methods

fn event_occurred(&self, event: Event) -> bool

Is the interrupt flag for the given event set?

fn clear_event(&mut self, event: Event)

Clear the interrupt flag for the given event.

Passing Event::Any clears all interrupt flags.

Note that the the global interrupt flag is not automatically cleared even when all other flags are cleared. The only way to clear it is to call this method with Event::Any.

Loading content...

Provided methods

fn reset(&mut self)

Reset the control registers of this channel. This stops any ongoing transfers.

fn set_peripheral_address(&mut self, address: u32, inc: Increment)

Set the base address of the peripheral data register from/to which the data will be read/written.

Only call this method on disabled channels.

Panics

Panics if this channel is enabled.

fn set_memory_address(&mut self, address: u32, inc: Increment)

Set the base address of the memory area from/to which the data will be read/written.

Only call this method on disabled channels.

Panics

Panics if this channel is enabled.

fn set_transfer_length(&mut self, len: u16)

Set the number of words to transfer.

Only call this method on disabled channels.

Panics

Panics if this channel is enabled.

fn set_word_size<W>(&mut self)

Set the word size.

Panics

Panics if the word size is not one of 8, 16, or 32 bits.

fn set_priority_level(&mut self, priority: Priority)

Set the priority level of this channel

fn set_direction(&mut self, direction: Direction)

Set the transfer direction

fn listen(&mut self, event: Event)

Enable the interrupt for the given event

fn unlisten(&mut self, event: Event)

Disable the interrupt for the given event

fn enable(&mut self)

Start a transfer

fn disable(&mut self)

Stop the current transfer

fn is_enabled(&self) -> bool

Is there a transfer in progress on this channel?

Loading content...

Implementors

impl Channel for stm32f3xx_hal::dma::dma1::C1[src]

impl Channel for stm32f3xx_hal::dma::dma1::C2[src]

impl Channel for stm32f3xx_hal::dma::dma1::C3[src]

impl Channel for stm32f3xx_hal::dma::dma1::C4[src]

impl Channel for stm32f3xx_hal::dma::dma1::C5[src]

impl Channel for C6[src]

impl Channel for C7[src]

impl Channel for stm32f3xx_hal::dma::dma2::C1[src]

impl Channel for stm32f3xx_hal::dma::dma2::C2[src]

impl Channel for stm32f3xx_hal::dma::dma2::C3[src]

impl Channel for stm32f3xx_hal::dma::dma2::C4[src]

impl Channel for stm32f3xx_hal::dma::dma2::C5[src]

Loading content...