You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CubeSatSim/libs/libmf/source/bch3121syn.c

14 lines
214 B

#include "ax8052.h"
#include "libmfbch.h"
uint16_t bch3121_syndrome(uint32_t cw)
{
uint8_t __autodata cnt = 21;
do {
if (cw & 0x80000000)
cw ^= 0xED200000;
cw <<= 1;
} while (--cnt);
return cw >> 22;
}

Powered by TurnKey Linux.