1.25.19.21 SDMMC_XFER_STATUS Enum

C

typedef enum
{
    // Command transfer completed
    SDMMC_XFER_STATUS_CMD_COMPLETED = 0x01,
	
    // Data transfer completed
    SDMMC_XFER_STATUS_DATA_COMPLETED = 0x02,
	
    // Card insertion event
    SDMMC_XFER_STATUS_CARD_INSERTED = 0x04,
	
    // Card removal event
    SDMMC_XFER_STATUS_CARD_REMOVED = 0x08
    
}SDMMC_XFER_STATUS;

Summary

The enumeration lists the status of the transfer.

Description

The enumeration is passed by the SDMMC PLIB in the application event handler to allow the application identify if the event handler is called on completion of command or data or for a card insertion/removal event.

Remarks

None.