UNPKG

@hqtsm/crc

Version:

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

12 lines 258 B
/** * @module * * CRC-24/FLEXRAY-A */ import { crc } from '../crc.js'; /** * CRC-24/FLEXRAY-A */ export const CRC_24_FLEXRAY_A = crc(24, 0x5d6dcb, false, 0xfedcba, false, 0x000000); export default CRC_24_FLEXRAY_A; //# sourceMappingURL=flexray-a.js.map