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

10 lines
221 B

#include "libmftypes.h"
__reentrantb uint8_t rev8(uint8_t x) __reentrant
{
x = ((x >> 4) & 0x0F) | ((x << 4) & 0xF0);
x = ((x >> 2) & 0x33) | ((x << 2) & 0xCC);
x = ((x >> 1) & 0x55) | ((x << 1) & 0xAA);
return x;
}

Powered by TurnKey Linux.