UNPKG

@hqtsm/crc

Version:

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

12 lines 226 B
/** * @module * * CRC-24/BLE */ import { crc } from '../crc.js'; /** * CRC-24/BLE */ export const CRC_24_BLE = crc(24, 0x00065b, true, 0x555555, true, 0x000000); export default CRC_24_BLE; //# sourceMappingURL=ble.js.map