aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport/gen_vrt.py
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-06-07 15:10:37 -0700
committerJosh Blum <josh@joshknows.com>2010-06-07 15:10:37 -0700
commit11e2d407ce4a45da8c6981abfd34883cb9174840 (patch)
tree8f4353da0855ae7a15e223199e83e50646d0b2ed /host/lib/transport/gen_vrt.py
parent0f4eff49c820a8d2ccb38e191604eb86c81b30af (diff)
downloaduhd-11e2d407ce4a45da8c6981abfd34883cb9174840.tar.gz
uhd-11e2d407ce4a45da8c6981abfd34883cb9174840.tar.bz2
uhd-11e2d407ce4a45da8c6981abfd34883cb9174840.zip
Created a common usrp dsp utils to handle register word calculations.
(also switched to boost endian define to avoid c compiler check)
Diffstat (limited to 'host/lib/transport/gen_vrt.py')
-rwxr-xr-xhost/lib/transport/gen_vrt.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/transport/gen_vrt.py b/host/lib/transport/gen_vrt.py
index 1417240ab..3279ae225 100755
--- a/host/lib/transport/gen_vrt.py
+++ b/host/lib/transport/gen_vrt.py
@@ -33,10 +33,11 @@ TMPL_TEXT = """
\#include <uhd/transport/vrt.hpp>
\#include <uhd/utils/byteswap.hpp>
+\#include <boost/detail/endian.hpp>
\#include <stdexcept>
//define the endian macros to convert integers
-\#ifdef HAVE_BIG_ENDIAN
+\#ifdef BOOST_BIG_ENDIAN
\#define BE_MACRO(x) (x)
\#define LE_MACRO(x) uhd::byteswap(x)
\#else