Spacecraft Control Framework 1.0
Spacecraft Control Library
binary_gray_code.h
Go to the documentation of this file.
1/*
2 * binary_gray_code.h
3 *
4 * CVS Revision: $Revision: 1.1 $
5 *
6 * Programmer(s): Michael Paluszek
7 *
8 * Copyright (c) 2005, Princeton Satellite Systems. All rights reserved.
9 *
10 */
11
18#ifndef BINARY_GRAY_CODE
19#define BINARY_GRAY_CODE
20
22unsigned short GrayToBinary( unsigned short x );
24unsigned short BinaryToGray( unsigned short x );
25
26#endif
unsigned short BinaryToGray(unsigned short x)
Converts binary to gray code.
Definition: sc_utility.cc:45
unsigned short GrayToBinary(unsigned short x)
Converts gray code to binary.
Definition: sc_utility.cc:23