Struct esp32c3_hal::dma::gdma::ChannelCreator2
source · #[non_exhaustive]pub struct ChannelCreator2 {}
Implementations§
source§impl ChannelCreator2
impl ChannelCreator2
sourcepub fn configure<'a>(
self,
burst_mode: bool,
tx_descriptors: &'a mut [u32],
rx_descriptors: &'a mut [u32],
priority: DmaPriority
) -> Channel<'a, Channel2>
pub fn configure<'a>( self, burst_mode: bool, tx_descriptors: &'a mut [u32], rx_descriptors: &'a mut [u32], priority: DmaPriority ) -> Channel<'a, Channel2>
Configure the channel for use
Descriptors should be sized as ((BUFFERSIZE + 4091) / 4092) * 3
. I.e., to
transfer buffers of size 1..=4092
, you need 3 descriptors.
Auto Trait Implementations§
impl RefUnwindSafe for ChannelCreator2
impl Send for ChannelCreator2
impl Sync for ChannelCreator2
impl Unpin for ChannelCreator2
impl UnwindSafe for ChannelCreator2
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more