1.1.20.5 WDRV_WINC_NVM_CHK_STATUS_INFO Struct

C

typedef struct
{
    uint32_t offset;
    uint32_t length;
    WDRV_WINC_NVM_CHECK_MODE_TYPE mode;

    union
    {
        uint16_t crc16;

        struct
        {
            uint8_t l;
            const uint8_t *p;
        } hash;
    };
} WDRV_WINC_NVM_CHK_STATUS_INFO;

Description

Status information provided upon successful completion of NVM check operation.

Members

MembersDescription
offsetOffset check began at.
lengthNumber of bytes checked.
modeCheck algorithm/method used.
crc16CRC16 result.
hash.lLength of hash value.
hash.pPointer to hash value.

Remarks

None.