1.8.19.13 SEFC_ERROR Enum

C

typedef enum
{
    /* No Error Occured */
    SEFC_ERROR_NONE = 0x1,
    /* In-valid command */
    SEFC_CMD_ERROR = 0x2,
    /* Flash region is locked */
    SEFC_LOCK_ERROR = 0x4,
    /* Flash Error */
    SEFC_FLERR_ERROR = 0x8,
    /* Flash Encountered an ECC error */
    SEFC_ECC_ERROR = 0xF0000,
} SEFC_ERROR;

Summary

Defines the data type for the SEFCx Error.

Description

This enum is used to define error encountered during last Flash operation.

Remarks

None.