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/bch3121enc.c

10 lines
149 B

#include "ax8052.h"
#include "libmfbch.h"
uint32_t bch3121_encode(uint32_t cw)
{
cw &= 0xFFFFF800;
cw |= bch3121_syndrome(cw) << 1;
return cw;
}

Powered by TurnKey Linux.