我正在使用 x-modem 协议和 133 字节数据包从串行端口读取文件。我在那读
1 byte is SOH
2 byte packet number
3 byte nagative of packet number
next 128 bytes data
2 bytes CRC sent from other side.
我必须计算从另一端发送的 128 字节数据和 2 字节 crc 的 CRC,我必须将其设为单字节并且必须与我计算的 crc 比较。我怎样才能在java中做到这一点?