1.34.6.16 HSMCI_XFER_STATUS Enum

C

typedef enum
{
    // Command transfer completed
    HSMCI_XFER_STATUS_CMD_COMPLETED = 0x01,
	
    // Data transfer completed
    HSMCI_XFER_STATUS_DATA_COMPLETED = 0x02
    
}HSMCI_XFER_STATUS;

Summary

The enumeration lists the status of the transfer.

Description

The enumeration is passed by the HSMCI PLIB in the application event handler to allow the application to identify if the event handler is called on completion of command or data

Remarks

None.