1.22.24.32 SDHC_CMD_RESP_TYPE Enum

C

typedef enum SDHC_CMD_RESP_TYPE
{
	/* no response type */
    SDHC_CMD_RESP_NONE, 
	/* normal response command */
    SDHC_CMD_RESP_R1, 
	/* normal with busy signal */
    SDHC_CMD_RESP_R1B, 
	/* CID, CSD register */
    SDHC_CMD_RESP_R2, 
	/* OCR register */
    SDHC_CMD_RESP_R3, 
    SDHC_CMD_RESP_R4, 
    SDHC_CMD_RESP_R5, 
	/* Published RCA response */
    SDHC_CMD_RESP_R6, 
	/* Card interface condition */
    SDHC_CMD_RESP_R7 
    
} SDHC_CMD_RESP_TYPE;

Summary

The enumeration lists the supported response types

Description

The enumeration is used to identify the expected response type for a given command.

Remarks

None.