calcCrc function

int calcCrc(
  1. ByteData byteData,
  2. int offset,
  3. int lenght
)

Implementation

int calcCrc(ByteData byteData, int offset, int lenght) {
  var crc = _crc16(byteData, offset, lenght);
  return crc;
}