1.2.6.9 SYS_DMA_SOURCE_ADDRESSING_MODE Enum

C

typedef enum
{
    /* Source address is always fixed */
    SYS_DMA_SOURCE_ADDRESSING_MODE_FIXED,
    
    /* Source address is incremented after every transfer */
    SYS_DMA_SOURCE_ADDRESSING_MODE_INCREMENTED,
    
    /* Used when Addressing mode is not supported */
    SYS_DMA_SOURCE_ADDRESSING_MODE_NONE = -1
    
}SYS_DMA_SOURCE_ADDRESSING_MODE;

Summary

Enumeration of possible DMA source addressing modes.

Description

This data type provides an enumeration of all possible DMA source addressing modes.

Remarks

Some of the enum elements may not be applicable for particular device, check MCC generated code before using them.