UNPKG

@hqtsm/crc

Version:

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

12 lines 238 B
/** * @module * * CRC-24/LTE-A */ import { crc } from '../crc.js'; /** * CRC-24/LTE-A */ export const CRC_24_LTE_A = crc(24, 0x864cfb, false, 0x000000, false, 0x000000); export default CRC_24_LTE_A; //# sourceMappingURL=lte-a.js.map