atsamd_hal::dmac::channel

Struct Channel

Source
pub struct Channel<Id: ChId, S: Status> { /* private fields */ }
Expand description

DMA channel, capable of executing Transfers. Ongoing DMA transfers are automatically stopped when a Channel is dropped.

Implementations§

Source§

impl<Id: ChId, S: Status> Channel<Id, S>

These methods may be used on any DMA channel in any configuration

Source

pub fn init(self, lvl: PriorityLevel) -> Channel<Id, S::Ready>

Configure the DMA channel so that it is ready to be used by a Transfer.

§Return

A Channel with a Ready status

Source

pub fn enable_interrupts(&mut self, flags: InterruptFlags)

Selectively enable interrupts

Source

pub fn disable_interrupts(&mut self, flags: InterruptFlags)

Selectively disable interrupts

Source

pub fn check_and_clear_interrupts( &mut self, flags: InterruptFlags, ) -> InterruptFlags

Check the specified flags, clear then return any that were set

Source§

impl<Id, R> Channel<Id, R>
where Id: ChId, R: ReadyChannel,

Source

pub fn reset(self) -> Channel<Id, R::Uninitialized>

Issue a software reset to the channel. This will return the channel to its startup state

Source

pub fn fifo_threshold(&mut self, threshold: FifoThreshold)

Set the FIFO threshold length. The channel will wait until it has received the selected number of Beats before triggering the Burst transfer, reducing the DMA transfer latency.

Source

pub fn burst_length(&mut self, burst_length: BurstLength)

Set burst length for the channel, in number of beats. A burst transfer is an atomic, uninterruptible operation.

Source§

impl<Id: ChId> Channel<Id, ReadyFuture>

Source

pub async fn transfer_future<S, D>( &mut self, source: S, dest: D, trig_src: TriggerSource, trig_act: TriggerAction, ) -> Result<(), Error>
where S: Buffer, D: Buffer<Beat = S::Beat>,

Begin DMA transfer using async operation.

If TriggerSource::Disable is used, a software trigger will be issued to the DMA channel to launch the transfer. It is therefore not necessary, in most cases, to manually issue a software trigger to the channel.

§Safety

In async mode, a transfer does NOT require 'static source and destination buffers. This, in theory, makes transfer_future an unsafe function, although it is marked as safe for better ergonomics.

This means that, as an user, you must ensure that the Future returned by this function may never be forgotten through forget or by wrapping it with a ManuallyDrop.

The returned future implements Drop and will automatically stop any ongoing transfers to guarantee that the memory occupied by the now-dropped buffers may not be corrupted by running transfers. This also means that should you forget this Future after its first poll call, the transfer will keep running, ruining the now-reclaimed memory, as well as the rest of your day.

  • awaiting is fine: the Future will run to completion.
  • Dropping an incomplete transfer is also fine. Dropping can happen, for example, if the transfer doesn’t complete before a timeout expires.

Trait Implementations§

Source§

impl<Id, S> AnyChannel for Channel<Id, S>
where Id: ChId, S: Status,

Source§

type Id = Id

Source§

type Status = S

Source§

impl<Id, S> AsMut<Channel<Id, S>> for Channel<Id, S>
where Id: ChId, S: Status,

Source§

fn as_mut(&mut self) -> &mut Self

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl<Id, S> AsRef<Channel<Id, S>> for Channel<Id, S>
where Id: ChId, S: Status,

Source§

fn as_ref(&self) -> &Self

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<Id: ChId> From<Channel<Id, Ready>> for Channel<Id, Uninitialized>

Source§

fn from(item: Channel<Id, Ready>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<Id, S> Freeze for Channel<Id, S>

§

impl<Id, S> !RefUnwindSafe for Channel<Id, S>

§

impl<Id, S> Send for Channel<Id, S>
where S: Send, Id: Send,

§

impl<Id, S> !Sync for Channel<Id, S>

§

impl<Id, S> Unpin for Channel<Id, S>
where S: Unpin, Id: Unpin,

§

impl<Id, S> UnwindSafe for Channel<Id, S>
where S: UnwindSafe, Id: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Is for T
where T: Sealed + AsRef<T> + AsMut<T>,

Source§

type Type = T

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.