UNPKG

@hqtsm/crc

Version:

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

22 lines (18 loc) 235 B
/** * @module * * CRC-7/MMC */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-7/MMC */ export const CRC_7_MMC = crc( 7, 0x09, false, 0x00, false, 0x00, ) as CrcInterface<number>; export default CRC_7_MMC;