UNPKG

@hqtsm/crc

Version:

CRC functions with a parameterized engine optimized for both speed and size

12 lines 240 B
/** * @module * * CRC-17/CAN-FD */ import { crc } from '../crc.js'; /** * CRC-17/CAN-FD */ export const CRC_17_CAN_FD = crc(17, 0x1685b, false, 0x00000, false, 0x00000); export default CRC_17_CAN_FD; //# sourceMappingURL=can-fd.js.map