You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
255 B
C++

#pragma once
class CRC
{
public:
CRC();
// 查表法CRC16校验
static unsigned short crc16Table(unsigned char *str, int len);
private:
static unsigned char m_crc16TableHigh[256];
static unsigned char m_crc16TableLow[256];
};