function  GetCRC16(CRCSrc: WORD;CRCBy:BYTE): WORD;
const G: WORD = $1021;
var
   TempWord: word;
   I: Integer;
begin
  TempWord := CRCBy shl 8;
  Result := CRCSrc;
  for I := 8 downto 1 do
  begin
    if ((TempWord xor Result) and $8000) <> 0 then
      Result := (Result shl 1) xor G
    else Result := Result shl 1;
    TempWord := TempWord shl 1;
  end;
end;
procedure TForm1.ChkBroadcastClick(Sender: TObject);
var chksendcon:array[0..3] of byte;
    pchk:pchar;
    crccode:word;
    ss:array[0..1] of byte;
begin
  chksendcon[0]:=$25;
  chksendcon[1]:=$10;
  chksendcon[2]:=$12;
  chksendcon[3]:=$05;
  pchk:=pchar(chksendcon);                 //计算校验数据结果
  while Pchk^ <> #0 do
  begin
      CRCCode := GetCRC16(CRCCode,ord(Pchk^));
      Pchk := CharNext(Pchk)
  end;
  ss[0]:=hi(crccode);
  ss[1]:=lo(crccode);
  edit1.text:=IntToHex(ord(sendcon[0]),2)+'   '+IntToHex(ord(sendcon[1]),2)
end;
可是在EDIT1文本框里显示均为00  00,不是我所要的CRC值。

解决方案 »

  1.   

    Polynom: Crc nach CCITT = x16 + x12 + x5 + 1 
    // Tabelle nach CCITT 
    Const Crc16Tab : Array[0..255] of Word = ( 
    $0000, $1021, $2042, $3063, $4084, $50a5, $60c6, $70e7, 
    $8108, $9129, $a14a, $b16b, $c18c, $d1ad, $e1ce, $f1ef, 
    $1231, $0210, $3273, $2252, $52b5, $4294, $72f7, $62d6, 
    $9339, $8318, $b37b, $a35a, $d3bd, $c39c, $f3ff, $e3de, 
    $2462, $3443, $0420, $1401, $64e6, $74c7, $44a4, $5485, 
    $a56a, $b54b, $8528, $9509, $e5ee, $f5cf, $c5ac, $d58d, 
    $3653, $2672, $1611, $0630, $76d7, $66f6, $5695, $46b4, 
    $b75b, $a77a, $9719, $8738, $f7df, $e7fe, $d79d, $c7bc, 
    $48c4, $58e5, $6886, $78a7, $0840, $1861, $2802, $3823, 
    $c9cc, $d9ed, $e98e, $f9af, $8948, $9969, $a90a, $b92b, 
    $5af5, $4ad4, $7ab7, $6a96, $1a71, $0a50, $3a33, $2a12, 
    $dbfd, $cbdc, $fbbf, $eb9e, $9b79, $8b58, $bb3b, $ab1a, 
    $6ca6, $7c87, $4ce4, $5cc5, $2c22, $3c03, $0c60, $1c41, 
    $edae, $fd8f, $cdec, $ddcd, $ad2a, $bd0b, $8d68, $9d49, 
    $7e97, $6eb6, $5ed5, $4ef4, $3e13, $2e32, $1e51, $0e70, 
    $ff9f, $efbe, $dfdd, $cffc, $bf1b, $af3a, $9f59, $8f78, 
    $9188, $81a9, $b1ca, $a1eb, $d10c, $c12d, $f14e, $e16f, 
    $1080, $00a1, $30c2, $20e3, $5004, $4025, $7046, $6067, 
    $83b9, $9398, $a3fb, $b3da, $c33d, $d31c, $e37f, $f35e, 
    $02b1, $1290, $22f3, $32d2, $4235, $5214, $6277, $7256, 
    $b5ea, $a5cb, $95a8, $8589, $f56e, $e54f, $d52c, $c50d, 
    $34e2, $24c3, $14a0, $0481, $7466, $6447, $5424, $4405, 
    $a7db, $b7fa, $8799, $97b8, $e75f, $f77e, $c71d, $d73c, 
    $26d3, $36f2, $0691, $16b0, $6657, $7676, $4615, $5634, 
    $d94c, $c96d, $f90e, $e92f, $99c8, $89e9, $b98a, $a9ab, 
    $5844, $4865, $7806, $6827, $18c0, $08e1, $3882, $28a3, 
    $cb7d, $db5c, $eb3f, $fb1e, $8bf9, $9bd8, $abbb, $bb9a, 
    $4a75, $5a54, $6a37, $7a16, $0af1, $1ad0, $2ab3, $3a92, 
    $fd2e, $ed0f, $dd6c, $cd4d, $bdaa, $ad8b, $9de8, $8dc9, 
    $7c26, $6c07, $5c64, $4c45, $3ca2, $2c83, $1ce0, $0cc1, 
    $ef1f, $ff3e, $cf5d, $df7c, $af9b, $bfba, $8fd9, $9ff8, 
    $6e17, $7e36, $4e55, $5e74, $2e93, $3eb2, $0ed1, $1ef0 
    ); 
    Function GenerateCRC16(Var s1:String):Word; 
    Var crc16:Word; i:Integer; 
    Begin 
      crc16 := 0; 
      For i := 1 to Length(s1) do Begin 
        Crc16 := Crc16Tab[((Crc16 shr 8 ) xor Ord(s1[i])) and $ff] xor ((Crc16 shl 8) and $FFFF); 
      End; 
      Result := crc16; 
    End; 
    Procedure TForm1.Button1Click(Sender: TObject); 
    Var crc16:Word; s1,s2:String; i,j:Integer; 
    Begin 
      s1 := '1234567890'; 
      For j := 1 to 10 do Begin 
        s2 := Copy(s1,1,j); 
        crc16 := GenerateCRC16(s2); 
        Memo1.Lines.Add(IntToStr(j) + Chr(9) + IntToHex(crc16,4)); 
      End; 
    End;