1.9.18.25 SDMMC_DataTransferFlags Struct

C

typedef struct
{
    // Indicates if SDMMC transfer has a data stage or not
    bool isDataPresent;
	
    // Direction of the data transfer
    SDMMC_DATA_TRANSFER_DIR transferDir;
	
    // Type of the data transfer - read/write
    SDMMC_DATA_TRANSFER_TYPE transferType;
    
}SDMMC_DataTransferFlags;

Summary

The data structure is used by the application to provide information about the data trasnfer to the SDMMC PLIB.

Description

The application indicates whether the transfer contains data stage and if yes, it further specifies the data transfer direction and data transfer type. The object of this data type is passed as an argument to the SDMMCx_CommandSend function.

Remarks

None.