STM32F37 Standard Peripheral bibliotheek  1.0
ST Microelectronics bibliotheek documentatie voor de STM32F37 Standard Peripheral Library
 All Data Structures Files Functions Variables Enumerations Enumerator Groups
CRC_PolynomialSize

Macros

#define CRC_PolSize_7   CRC_CR_POLSIZE
 
#define CRC_PolSize_8   CRC_CR_POLSIZE_1
 
#define CRC_PolSize_16   CRC_CR_POLSIZE_0
 
#define CRC_PolSize_32   ((uint32_t)0x00000000)
 
#define IS_CRC_POL_SIZE(SIZE)
 

Detailed Description

Macro Definition Documentation

#define CRC_PolSize_16   CRC_CR_POLSIZE_0

16-bit polynomial for CRC calculation

#define CRC_PolSize_32   ((uint32_t)0x00000000)

32-bit polynomial for CRC calculation

#define CRC_PolSize_7   CRC_CR_POLSIZE

7-bit polynomial for CRC calculation

#define CRC_PolSize_8   CRC_CR_POLSIZE_1

8-bit polynomial for CRC calculation

#define IS_CRC_POL_SIZE (   SIZE)
Value:
(((SIZE) == CRC_PolSize_7) || \
((SIZE) == CRC_PolSize_8) || \
((SIZE) == CRC_PolSize_16) || \
((SIZE) == CRC_PolSize_32))