Skip to content

Instantly share code, notes, and snippets.

@hunternsk
hunternsk / crc.c
Last active February 13, 2024 10:17
CRC-8-SAE J1850 test
// gcc crc.c -std=c99 -o crctest
#include <inttypes.h>
#include <stdio.h>
uint8_t crcTable[256];
uint8_t CalcCRC(uint8_t * buf, uint8_t len);
void CRCInit(void);