summaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-06-30 16:35:22 -0700
committerJosh Blum <josh@joshknows.com>2011-06-30 16:35:22 -0700
commit208c1aa1a370550ca26cf9a2dc52dcc5fe9693e2 (patch)
tree58b68512caa58b92f2387370adfce28dfacdd9a4 /host/lib
parent3a53fc9b19d1b1aed5f6c99367fe0f8e2911457c (diff)
downloaduhd-208c1aa1a370550ca26cf9a2dc52dcc5fe9693e2.tar.gz
uhd-208c1aa1a370550ca26cf9a2dc52dcc5fe9693e2.tar.bz2
uhd-208c1aa1a370550ca26cf9a2dc52dcc5fe9693e2.zip
b100: figured it out, endianess was set wrong
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/usrp/b100/io_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/b100/io_impl.cpp b/host/lib/usrp/b100/io_impl.cpp
index 894876a7c..3c1acedaf 100644
--- a/host/lib/usrp/b100/io_impl.cpp
+++ b/host/lib/usrp/b100/io_impl.cpp
@@ -94,12 +94,12 @@ void b100_impl::io_init(void){
//setup rx otw type
_rx_otw_type.width = 16;
_rx_otw_type.shift = 0;
- _rx_otw_type.byteorder = uhd::otw_type_t::BO_BIG_ENDIAN;
+ _rx_otw_type.byteorder = uhd::otw_type_t::BO_LITTLE_ENDIAN;
//setup tx otw type
_tx_otw_type.width = 16;
_tx_otw_type.shift = 0;
- _tx_otw_type.byteorder = uhd::otw_type_t::BO_BIG_ENDIAN;
+ _tx_otw_type.byteorder = uhd::otw_type_t::BO_LITTLE_ENDIAN;
//TODO best place to put this?
this->reset_gpif(6);