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

13 lines
212 B

#include "ax8052.h"
#include "libmfbch.h"
uint32_t bch3121_decode_parity(uint32_t cw)
{
uint8_t __autodata p = cw & 1;
cw = bch3121_decode(cw);
if (cw & 1)
return cw;
cw |= p ^ parity32(cw);
return cw;
}

Powered by TurnKey Linux.