1.4.6.20 DMAC_CRC_POLYNOMIAL_TYPE Enum

C

typedef enum
{
    /* CRC16 (CRC-CCITT): 0x1021 */
    DMAC_CRC_TYPE_16 = 0x0,
    
    /* CRC32 (IEEE 802.3): 0x04C11DB7*/
    DMAC_CRC_TYPE_32 = 0x1
    
} DMAC_CRC_POLYNOMIAL_TYPE;

Summary

Enumeration of Supported CRC polynomials

Description

This data type provides an enumeration of supported CRC polynomials.

These enumerations should be used while filling the DMAC_CRC_SETUP data structure.

Remarks

None.