Add CRC16 with reverse bit order

This commit is contained in:
Nils Faerber 2011-07-19 12:31:32 +02:00
parent 5c3d6461a1
commit 0d6cba4530
5 changed files with 450 additions and 4 deletions

7
crc16ccitt.h Normal file
View file

@ -0,0 +1,7 @@
#ifndef _CRC16_h
#define _CRC16_H
void crc16ccitt_init(void);
unsigned short crc16ccitt (unsigned char *data, int len);
#endif