Struct stm32_hal2::dma::ChannelCfg
source · pub struct ChannelCfg {
pub priority: Priority,
pub circular: Circular,
pub periph_incr: IncrMode,
pub mem_incr: IncrMode,
}Expand description
This struct is used to pass common (non-peripheral and non-use-specific) data when configuring a channel.
Fields§
§priority: PriorityChannel priority compared to other channels; can be low, medium, high, or very high. Defaults to medium.
circular: CircularEnable or disable circular DMA. If enabled, the transfer continues after reaching the end of the buffer, looping to the beginning. A TC interrupt first each time the end is reached, if set. Defaults to disabled.
periph_incr: IncrModeWhether we increment the peripheral address on data word transfer; generally (and by default) disabled.
mem_incr: IncrModeWhether we increment the buffer address on data word transfer; generally (and by default) enabled.
Trait Implementations§
source§impl Clone for ChannelCfg
impl Clone for ChannelCfg
source§fn clone(&self) -> ChannelCfg
fn clone(&self) -> ChannelCfg
Returns a copy 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 more