1.34.6.20 HSMCI_DataTransferFlags Struct

C

typedef struct
{
    // Indicates if HSMCI transfer has a data stage or not
    bool isDataPresent;
	
    // Direction of the data transfer
    HSMCI_DATA_TRANSFER_DIR transferDir;
	
    // Type of the data transfer - read/write
    HSMCI_DATA_TRANSFER_TYPE transferType;
    
}HSMCI_DataTransferFlags;

Summary

The data structure is used by the application to provide information about the data trasnfer to the HSMCI 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 HSMCI_CommandSend function.

Remarks

None.