1.22.24.27 SDHC_RESET_TYPE Enum

C

typedef enum
{
    // Reset all errors
    SDHC_RESET_ALL = 0x01,
    // Reset command errors
    SDHC_RESET_CMD = 0x02,
    // Reset data errors
    SDHC_RESET_DAT = 0x04
    
} SDHC_RESET_TYPE;

Summary

The enumeration lists the types of errors application can reset

Description

The enumeration is used to select the error type to reset.

Remarks

None.