Imported Upstream version 3.0.4
[debian/gnuradio] / usrp / host / lib / usrp_bytesex.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22 #ifndef INCLUDED_USRP_BYTESEX_H
23 #define INCLUDED_USRP_BYTESEX_H
24
25 /*!
26  * \brief routines for convertering between host and usrp byte order
27  *
28  * Prior to including this file, the user must include "config.h"
29  * which will or won't define WORDS_BIGENDIAN based on the
30  * result of the AC_C_BIGENDIAN autoconf test.
31  */
32
33 #ifdef HAVE_BYTESWAP_H
34 #include <byteswap.h>
35 #else
36 static inline unsigned short int
37 bswap_16 (unsigned short int x)
38 {
39   return ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8));
40 }
41 #endif
42
43
44 #ifdef WORDS_BIGENDIAN
45
46 static inline short int
47 host_to_usrp_short (short int x)
48 {
49   return bswap_16 (x);
50 }
51
52 static inline short int
53 usrp_to_host_short (short int x)
54 {
55   return bswap_16 (x);
56 }
57
58 #else
59
60 static inline short int
61 host_to_usrp_short (short int x)
62 {
63   return x;
64 }
65
66 static inline short int
67 usrp_to_host_short (unsigned short int x)
68 {
69   return x;
70 }
71
72 #endif
73
74 #endif /* INCLUDED_USRP_BYTESEX_H */