-
-
Save gnh1201/767041c12122a972703075e7b6126bfc to your computer and use it in GitHub Desktop.
CRC-16/CCITT-FALSE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
uint16_t crc16(char* pData, int length) | |
{ | |
uint8_t i; | |
uint16_t wCrc = 0xffff; | |
while (length--) { | |
wCrc ^= *(unsigned char *)pData++ << 8; | |
for (i=0; i < 8; i++) | |
wCrc = wCrc & 0x8000 ? (wCrc << 1) ^ 0x1021 : wCrc << 1; | |
} | |
return wCrc & 0xffff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
amindk17 commented on 25 Apr 2019
Python 3 version