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

8 lines
164 B

#include "libmfcrc.h"
__reentrantb uint16_t pn15_advance(uint16_t pn15) __reentrant
{
pn15 &= 0x7FFF;
return (pn15 >> 8) ^ pn15_adv_table[pn15 & 0xff];
}

Powered by TurnKey Linux.