1.32.25.24 SDHC_READ_RESPONSE_REG Enum

C

typedef enum
{
    // Read response register 0
    SDHC_READ_RESP_REG_0 = 0,
    // Read response register 1
    SDHC_READ_RESP_REG_1,
    // Read response register 2
    SDHC_READ_RESP_REG_2,
    // Read response register 3
    SDHC_READ_RESP_REG_3,
    // Read all the response registers
    SDHC_READ_RESP_REG_ALL
    
} SDHC_READ_RESPONSE_REG;

Summary

The enumeration lists the response registers that can be read for a given command.

Description

The enumeration is used to identify the response register that the application wants to read.

Remarks

None.