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: Priority

Channel priority compared to other channels; can be low, medium, high, or very high. Defaults to medium.

circular: Circular

Enable 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: IncrMode

Whether we increment the peripheral address on data word transfer; generally (and by default) disabled.

mem_incr: IncrMode

Whether we increment the buffer address on data word transfer; generally (and by default) enabled.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.