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

8 lines
153 B

#include "libmfcrc.h"
__reentrantb uint16_t pn9_advance(uint16_t pn9) __reentrant
{
pn9 &= 0x1FF;
return (pn9 >> 8) ^ (pn9_table[pn9] << 1);
}

Powered by TurnKey Linux.