- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
#define POLY 0x8408
/*
// 16 12 5
// this is the CCITT CRC 16 polynomial X + X + X + 1.
// This works out to be 0x1021, but the way the algorithm works
// lets us use 0x8408 (the reverse of the bit pattern). The high
// bit is always assumed to be set, thus we only use 16 bits to
// represent the 17 bit value.
*/
unsigned short crc16(unsigned char *data_p, size_t length)
{
unsigned char i;
unsigned int data;
if ( length == 0 ) return 0;
unsigned int crc = 0xFFFF;
do
{
data = *data_p++;
for ( i=0; i < 8; i++ )
{
if ( (crc ^ data) & 1 )
crc = (crc >> 1) ^ POLY;
else
crc >>= 1;
data >>= 1;
}
} while ( --length != 0 );
crc = ~crc;
data = crc;
crc = (crc << 8) | ((data >> 8) & 0xff);
return (unsigned short)(crc);
}
j123123 07.12.2017 01:22 # −1
А зачем вообще так сложно? Нет чтоб
Да и никакого & 0xFF тут не надо, если мы предполагаем что там оно 32-битное и unsigned
COWuTEJIbTBOEuMAMKu 07.12.2017 01:55 # +1
j123123 07.12.2017 01:56 # −1
COWuTEJIbTBOEuMAMKu 07.12.2017 02:11 # 0
codemonkey 07.12.2017 12:32 # −1
Нагло спиженно с stack overflow и отформаченно как надо.
Steve_Brown 08.12.2017 13:42 # 0