UNPKG

@hqtsm/crc

Version:

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

12 lines 247 B
/** * @module * * CRC-16/PROFIBUS */ import { crc } from '../crc.js'; /** * CRC-16/PROFIBUS */ export const CRC_16_PROFIBUS = crc(16, 0x1dcf, false, 0xffff, false, 0xffff); export default CRC_16_PROFIBUS; //# sourceMappingURL=profibus.js.map