关于CCITT CRC-16校验程序de问题(100分)

  • 主题发起人 主题发起人 tjcjh
  • 开始时间 开始时间
T

tjcjh

Unregistered / Unconfirmed
GUEST, unregistred user!
一个项目需要CCITT CRC-16校验,在网上看到一个例子:
http://topic.csdn.net/t/20050608/14/4068023.html (3楼)
如果我要用edit1.text显示这个Rt,应该如何写?
 
Rt.Highbyte:=T1

Rt.Lowbyte:=T2

Result:=Rt

------------------------------------------------------
edit1.text := inttohex(Rt.Highbyte,2)+inttohex(Rt.Lowbyte,2);
 
接受答案了.
 
后退
顶部