add numerical recipes library
This commit is contained in:
14
lib/nr/ansi/recipes/icrc1.c
Normal file
14
lib/nr/ansi/recipes/icrc1.c
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
unsigned short icrc1(unsigned short crc, unsigned char onech)
|
||||
{
|
||||
int i;
|
||||
unsigned short ans=(crc ^ onech << 8);
|
||||
|
||||
for (i=0;i<8;i++) {
|
||||
if (ans & 0x8000)
|
||||
ans = (ans <<= 1) ^ 4129;
|
||||
else
|
||||
ans <<= 1;
|
||||
}
|
||||
return ans;
|
||||
}
|
||||
Reference in New Issue
Block a user