add numerical recipes library
This commit is contained in:
15
lib/nr/cpp/recipes/icrc1.cpp
Normal file
15
lib/nr/cpp/recipes/icrc1.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#include "nr.h"
|
||||
|
||||
unsigned short NR::icrc1(const unsigned short crc, const 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