#[repr(u16)]pub enum BandwidthControl {
Stall4Cycles = 2,
Stall8Cycles = 3,
}Expand description
Throttles the amount of bus bandwidth consumed by the eDMA
Defines the number of stalls that the DMA engine will insert between most element transfers.
Some stalls may not occur to minimize startup latency. See the reference manual for more details.
Variants§
Stall4Cycles = 2
DMA engine stalls for 4 cycles after each R/W.
Stall8Cycles = 3
DMA engine stalls for 8 cycles after each R/W.
Trait Implementations§
Source§impl Clone for BandwidthControl
impl Clone for BandwidthControl
Source§fn clone(&self) -> BandwidthControl
fn clone(&self) -> BandwidthControl
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BandwidthControl
impl Debug for BandwidthControl
Source§impl PartialEq for BandwidthControl
impl PartialEq for BandwidthControl
impl Copy for BandwidthControl
impl Eq for BandwidthControl
impl StructuralPartialEq for BandwidthControl
Auto Trait Implementations§
impl Freeze for BandwidthControl
impl RefUnwindSafe for BandwidthControl
impl Send for BandwidthControl
impl Sync for BandwidthControl
impl Unpin for BandwidthControl
impl UnwindSafe for BandwidthControl
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