This file contains hidden or 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
unit crc16; | |
interface | |
function CalcCRC16(AData: PByte; ASize: Integer): Word; | |
implementation | |
function CalcCRC16(AData: PByte; ASize: Integer): Word; | |
// Ported from c source: https://stackoverflow.com/a/10569892/2614619 |
NewerOlder