pub struct Transfer<Chan, Buf>where
Buf: AnyBufferPair,
Chan: AnyChannel,{ /* private fields */ }
Expand description
DMA transfer, owning the resources until the transfer is done and
Transfer::wait
is called.
Implementations§
Source§impl<C, S, D, R> Transfer<C, BufferPair<S, D>>where
S: Buffer + 'static,
D: Buffer<Beat = S::Beat> + 'static,
C: AnyChannel<Status = R>,
R: ReadyChannel,
impl<C, S, D, R> Transfer<C, BufferPair<S, D>>where
S: Buffer + 'static,
D: Buffer<Beat = S::Beat> + 'static,
C: AnyChannel<Status = R>,
R: ReadyChannel,
Sourcepub fn new(
chan: C,
source: S,
destination: D,
circular: bool,
) -> Result<Transfer<C, BufferPair<S, D>>>
pub fn new( chan: C, source: S, destination: D, circular: bool, ) -> Result<Transfer<C, BufferPair<S, D>>>
Safely construct a new Transfer
. To guarantee memory safety, both
buffers are required to be 'static
.
Refer here or
here for more information.
If two array references can be used as source and destination buffers
(as opposed to slices), then it is recommended to use the
Transfer::new_from_arrays
method instead.
§Errors
Returns Error::LengthMismatch
if both
buffers have a length > 1 and are not of equal length.
Source§impl<C, S, D, R> Transfer<C, BufferPair<S, D>>
impl<C, S, D, R> Transfer<C, BufferPair<S, D>>
Sourcepub unsafe fn new_unchecked(
chan: C,
source: S,
destination: D,
circular: bool,
) -> Transfer<C, BufferPair<S, D>>
pub unsafe fn new_unchecked( chan: C, source: S, destination: D, circular: bool, ) -> Transfer<C, BufferPair<S, D>>
Construct a new Transfer
without checking for memory safety.
§Safety
To guarantee the safety of creating a Transfer
using this method, you
must uphold some invariants:
-
A
Transfer
holding aChannel<Id, Running>
must never be dropped. It should always be explicitly bewait
ed upon orstop
ped. -
The size in bytes or the source and destination buffers should be exacly the same, unless one or both buffers are of length 1. The transfer length will be set to the longest of both buffers if they are not of equal size.
Source§impl<C, S, D> Transfer<C, BufferPair<S, D>>
impl<C, S, D> Transfer<C, BufferPair<S, D>>
Sourcepub fn begin(
self,
trig_src: TriggerSource,
trig_act: TriggerAction,
) -> Transfer<Channel<ChannelId<C>, Busy>, BufferPair<S, D>>
pub fn begin( self, trig_src: TriggerSource, trig_act: TriggerAction, ) -> Transfer<Channel<ChannelId<C>, Busy>, BufferPair<S, D>>
Begin DMA transfer in blocking mode. If TriggerSource::Disable
is
used, a software trigger will be issued to the DMA channel to launch
the transfer. Is is therefore not necessary, in most cases, to manually
issue a software trigger to the channel.
Source§impl<B, C, R, const N: usize> Transfer<C, BufferPair<&'static mut [B; N]>>
impl<B, C, R, const N: usize> Transfer<C, BufferPair<&'static mut [B; N]>>
Sourcepub fn new_from_arrays(
chan: C,
source: &'static mut [B; N],
destination: &'static mut [B; N],
circular: bool,
) -> Self
pub fn new_from_arrays( chan: C, source: &'static mut [B; N], destination: &'static mut [B; N], circular: bool, ) -> Self
Create a new Transfer
from static array references of the same type
and length. When two array references are available (instead of slice
references), it is recommended to use this function over
Transfer::new
, because it provides compile-time
checking that the array lengths match. It therefore does not panic, and
saves some runtime checking of the array lengths.
Source§impl<S, D, C> Transfer<C, BufferPair<S, D>>
impl<S, D, C> Transfer<C, BufferPair<S, D>>
Sourcepub fn software_trigger(&mut self)
pub fn software_trigger(&mut self)
Issue a software trigger request to the corresponding channel. Note that is not guaranteed that the trigger request will register, if a trigger request is already pending for the channel.
Sourcepub fn wait(self) -> (Channel<ChannelId<C>, Ready>, S, D)
pub fn wait(self) -> (Channel<ChannelId<C>, Ready>, S, D)
Wait for the DMA transfer to complete and release all owned resources
§Blocking: This method may block
Sourcepub fn block_transfer_interrupt(&mut self) -> bool
pub fn block_transfer_interrupt(&mut self) -> bool
Checks and clears the block transfer complete interrupt flag
Sourcepub fn recycle(&mut self, source: S, destination: D) -> Result<(S, D)>
pub fn recycle(&mut self, source: S, destination: D) -> Result<(S, D)>
Modify a completed transfer with new source
and destination
, then
restart.
Returns a Result containing the source and destination from the
completed transfer. Returns Err(_)
if the buffer lengths are
mismatched or if the previous transfer has not yet completed.
Sourcepub fn recycle_source(&mut self, destination: D) -> Result<D>
pub fn recycle_source(&mut self, destination: D) -> Result<D>
Modify a completed transfer with a new destination
, then restart.
Returns a Result containing the destination from the
completed transfer. Returns Err(_)
if the buffer lengths are
mismatched or if the previous transfer has not yet completed.
Sourcepub fn recycle_destination(&mut self, source: S) -> Result<S>
pub fn recycle_destination(&mut self, source: S) -> Result<S>
Modify a completed transfer with a new source
, then restart.
Returns a Result containing the source from the
completed transfer. Returns Err(_)
if the buffer lengths are
mismatched or if the previous transfer has not yet completed.