1.35.4.13 EFC_ERROR Enum

C

typedef enum
{
    /* No Error Occured */
    EFC_ERROR_NONE = 0x1,
    /*In-valid command*/
    EFC_CMD_ERROR = 0x2,
    /*Flash region is locked*/
    EFC_LOCK_ERROR = 0x4,
    /*Flash Error*/
    EFC_FLERR_ERROR = 0x8,
    /*Flash Encountered an ECC error*/
    EFC_ECC_ERROR = 0xF0000,
} EFC_ERROR;

Summary

Defines the data type for the EFC Error.

Description

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

Remarks

None.