pub struct Channel<Id: ChId, S: Status> { /* private fields */ }
Expand description
Implementations§
Source§impl<Id: ChId, S: Status> Channel<Id, S>
These methods may be used on any DMA channel in any configuration
impl<Id: ChId, S: Status> Channel<Id, S>
These methods may be used on any DMA channel in any configuration
Sourcepub fn init(self, lvl: PriorityLevel) -> Channel<Id, S::Ready>
pub fn init(self, lvl: PriorityLevel) -> Channel<Id, S::Ready>
Sourcepub fn enable_interrupts(&mut self, flags: InterruptFlags)
pub fn enable_interrupts(&mut self, flags: InterruptFlags)
Selectively enable interrupts
Sourcepub fn disable_interrupts(&mut self, flags: InterruptFlags)
pub fn disable_interrupts(&mut self, flags: InterruptFlags)
Selectively disable interrupts
Sourcepub fn check_and_clear_interrupts(
&mut self,
flags: InterruptFlags,
) -> InterruptFlags
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,
impl<Id, R> Channel<Id, R>where
Id: ChId,
R: ReadyChannel,
Sourcepub fn reset(self) -> Channel<Id, R::Uninitialized>
pub fn reset(self) -> Channel<Id, R::Uninitialized>
Issue a software reset to the channel. This will return the channel to its startup state
Sourcepub fn fifo_threshold(&mut self, threshold: FifoThreshold)
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.
Sourcepub fn burst_length(&mut self, burst_length: BurstLength)
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>
impl<Id: ChId> Channel<Id, ReadyFuture>
Sourcepub async fn transfer_future<S, D>(
&mut self,
source: S,
dest: D,
trig_src: TriggerSource,
trig_act: TriggerAction,
) -> Result<(), Error>
pub async fn transfer_future<S, D>( &mut self, source: S, dest: D, trig_src: TriggerSource, trig_act: TriggerAction, ) -> Result<(), Error>
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.
await
ing is fine: theFuture
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.