1.2.20.26 SDMMC_DATA_TRANSFER_DIR Enum

C

typedef enum
{
    // Direction of the SDMMC data transfer is write
    SDMMC_DATA_TRANSFER_DIR_WRITE = 0,
	
    // Direction of the SDMMC data transfer is read
    SDMMC_DATA_TRANSFER_DIR_READ
    
}SDMMC_DATA_TRANSFER_DIR;

Summary

The enumeration lists the direction of the data transfer.

Description

The enumeration is used to identify the direction of the data transfer in the SDMMCx_DmaSetup() API.

Remarks

None.