11 #ifndef __MG32F10x_CRC_H 12 #define __MG32F10x_CRC_H 44 #define CRC16_IBM_ComputeBytes_Update CRC16_Modbus_ComputeBytes_Update 59 #define CRC16_IBM_ComputeHalfWords_Update CRC16_Modbus_ComputeHalfWords_Update uint16_t CRC16_CCITT_ComputeBytes(const uint8_t *ptr_data, uint32_t data_len)
Computes the 16-bit CRC-CCITT of a given buffer of byte(8-bit) with default seed.
Definition: mg32f10x_crc.c:81
uint32_t CRC32_MPEG2_ComputeWords_Update(uint32_t seed, const uint32_t *ptr_data, uint32_t data_len)
Computes the 32-bit CRC(MPEG2) of a given buffer of word(32-bit) with user-defined seed.
Definition: mg32f10x_crc.c:470
uint16_t CRC16_Modbus_ComputeBytes(const uint8_t *ptr_data, uint32_t data_len)
Computes the 16-bit CRC(Modbus) of a given buffer of byte(8-bit) with default seed.
Definition: mg32f10x_crc.c:123
uint32_t CRC32_ComputeBytes(const uint8_t *ptr_data, uint32_t data_len)
Computes the 32-bit CRC of a given buffer of byte(8-bit) with default seed.
Definition: mg32f10x_crc.c:186
uint16_t CRC16_CCITT_ComputeHalfWords(const uint16_t *ptr_data, uint32_t data_len)
Computes the 16-bit CRC-CCITT of a given buffer of halfword(16-bit) with default seed.
Definition: mg32f10x_crc.c:272
uint16_t CRC16_IBM_ComputeBytes(const uint8_t *ptr_data, uint32_t data_len)
Computes the 16-bit CRC(IBM) of a given buffer of byte(8-bit) with default seed.
Definition: mg32f10x_crc.c:166
uint16_t CRC16_Modbus_ComputeHalfWords_Update(uint16_t seed, const uint16_t *ptr_data, uint32_t data_len)
Computes the 16-bit CRC(Modbus) of a given buffer of halfword(16-bit) with user-defined seed.
Definition: mg32f10x_crc.c:342
uint32_t CRC32_MPEG2_ComputeWords(const uint32_t *ptr_data, uint32_t data_len)
Computes the 32-bit CRC(MPEG2) of a given buffer of word(32-bit) with default seed.
Definition: mg32f10x_crc.c:443
uint16_t CRC16_IBM_ComputeHalfWords(const uint16_t *ptr_data, uint32_t data_len)
Computes the 16-bit CRC(IBM) of a given buffer of halfword(16-bit) with default seed.
Definition: mg32f10x_crc.c:365
uint8_t CRC8_ComputeBytes(const uint8_t *ptr_data, uint32_t data_len)
Computes the 8-bit CRC of a given buffer of byte(8-bit) with default seed.
Definition: mg32f10x_crc.c:39
uint32_t CRC32_MPEG2_ComputeBytes(const uint8_t *ptr_data, uint32_t data_len)
Computes the 32-bit CRC(MPEG2) of a given buffer of byte(8-bit) with default seed.
Definition: mg32f10x_crc.c:230
uint16_t CRC16_Modbus_ComputeBytes_Update(uint16_t seed, const uint8_t *ptr_data, uint32_t data_len)
Computes the 16-bit CRC(Modbus) of a given buffer of byte(8-bit) with user-defined seed.
Definition: mg32f10x_crc.c:145
uint32_t CRC32_ComputeBytes_Update(uint32_t seed, const uint8_t *ptr_data, uint32_t data_len)
Computes the 32-bit CRC of a given buffer of byte(8-bit) with user-defined seed.
Definition: mg32f10x_crc.c:208
uint8_t CRC8_ComputeBytes_Update(uint8_t seed, const uint8_t *ptr_data, uint32_t data_len)
Computes the 8-bit CRC of a given buffer of byte(8-bit) with user-defined seed.
Definition: mg32f10x_crc.c:60
uint32_t CRC32_ComputeWords(const uint32_t *ptr_data, uint32_t data_len)
Computes the 32-bit CRC of a given buffer of word(32-bit) with default seed.
Definition: mg32f10x_crc.c:387
uint16_t CRC16_CCITT_ComputeBytes_Update(uint16_t seed, const uint8_t *ptr_data, uint32_t data_len)
Computes the 16-bit CRC-CCITT of a given buffer of byte(8-bit) with user-defined seed.
Definition: mg32f10x_crc.c:102
uint16_t CRC16_Modbus_ComputeHalfWords(const uint16_t *ptr_data, uint32_t data_len)
Computes the 16-bit CRC(Modbus) of a given buffer of halfword(16-bit) with default seed.
Definition: mg32f10x_crc.c:318
uint32_t CRC32_MPEG2_ComputeBytes_Update(uint32_t seed, const uint8_t *ptr_data, uint32_t data_len)
Computes the 32-bit CRC(MPEG2) of a given buffer of byte(8-bit) with user-defined seed.
Definition: mg32f10x_crc.c:251
uint32_t CRC32_ComputeWords_Update(uint32_t seed, const uint32_t *ptr_data, uint32_t data_len)
Computes the 32-bit CRC of a given buffer of word(32-bit) with user-defined seed.
Definition: mg32f10x_crc.c:415
uint16_t CRC16_CCITT_ComputeHalfWords_Update(uint16_t seed, const uint16_t *ptr_data, uint32_t data_len)
Computes the 16-bit CRC-CCITT of a given buffer of halfword(16-bit) with user-defined seed.
Definition: mg32f10x_crc.c:295