Imported Upstream version 3.2.2
[debian/gnuradio] / usrp / host / lib / legacy / 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
37 #warning Using non-portable code (likely wrong other than ILP32).
38
39 static inline unsigned short int
40 bswap_16 (unsigned short int x)
41 {
42   return ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8));
43 }
44
45 static inline unsigned int
46 bswap_32 (unsigned int x)
47 {
48   return ((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >>  8) \
49         | (((x) & 0x0000ff00) <<  8) | (((x) & 0x000000ff) << 24));
50 }
51 #endif
52
53
54 #ifdef WORDS_BIGENDIAN
55
56 static inline unsigned int
57 host_to_usrp_u32 (unsigned int x)
58 {
59   return bswap_32(x);
60 }
61
62 static inline unsigned int
63 usrp_to_host_u32 (unsigned int x)
64 {
65   return bswap_32(x);
66 }
67
68 static inline short int
69 host_to_usrp_short (short int x)
70 {
71   return bswap_16 (x);
72 }
73
74 static inline short int
75 usrp_to_host_short (short int x)
76 {
77   return bswap_16 (x);
78 }
79
80 #else
81
82 static inline unsigned int
83 host_to_usrp_u32 (unsigned int x)
84 {
85   return x;
86 }
87
88 static inline unsigned int
89 usrp_to_host_u32 (unsigned int x)
90 {
91   return x;
92 }
93
94 static inline short int
95 host_to_usrp_short (short int x)
96 {
97   return x;
98 }
99
100 static inline short int
101 usrp_to_host_short (unsigned short int x)
102 {
103   return x;
104 }
105
106 #endif
107
108 #endif /* INCLUDED_USRP_BYTESEX_H */