1.34.6.18 HSMCI_READ_RESPONSE_REG Enum

C

typedef enum
{
    // Read response register 0
    HSMCI_READ_RESP_REG_0 = 0,
    // Read response register 1
    HSMCI_READ_RESP_REG_1,
    // Read response register 2
    HSMCI_READ_RESP_REG_2,
    // Read response register 3
    HSMCI_READ_RESP_REG_3,
    // Read all the response registers
    HSMCI_READ_RESP_REG_ALL
    
} HSMCI_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 using the HSMCI_ResponseRead() API

Remarks

None.