1.2.6.11 SYS_DMA_WIDTH Enum

C

typedef enum
{
    /* DMA data width 8 bit */
    SYS_DMA_WIDTH_8_BIT,
    
    /* DMA data width 16 bit */
    SYS_DMA_WIDTH_16_BIT,
    
    /* DMA data width 32 bit */
    SYS_DMA_WIDTH_32_BIT,
    
    /* USed when DMA Width is not supported */
    SYS_DMA_WIDTH_NONE = -1
    
}SYS_DMA_WIDTH;

Summary

Enumeration of possible DMA data width

Description

This data type provides an enumeration of all possible DMA data width.

Remarks

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