diff options
author | Alex Williams <alex.williams@ni.com> | 2019-09-04 11:08:48 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 12:21:31 -0800 |
commit | f3a86a32944ae68047e6f64369e93a6830742601 (patch) | |
tree | 6311b9a070d777bd823f7f1b2e6581acd776d9ac /host/lib/usrp/x300/x300_mb_iface.cpp | |
parent | cb9329a681552e6ac6277d16e1627afcbb23e637 (diff) | |
download | uhd-f3a86a32944ae68047e6f64369e93a6830742601.tar.gz uhd-f3a86a32944ae68047e6f64369e93a6830742601.tar.bz2 uhd-f3a86a32944ae68047e6f64369e93a6830742601.zip |
rfnoc: Unify endianness of transports
Ethernet now uses the same serialization of the RFNoC stream as all
the other transports.
Diffstat (limited to 'host/lib/usrp/x300/x300_mb_iface.cpp')
-rw-r--r-- | host/lib/usrp/x300/x300_mb_iface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/x300/x300_mb_iface.cpp b/host/lib/usrp/x300/x300_mb_iface.cpp index 2c053080d..5642ffc98 100644 --- a/host/lib/usrp/x300/x300_mb_iface.cpp +++ b/host/lib/usrp/x300/x300_mb_iface.cpp @@ -44,7 +44,7 @@ uhd::endianness_t x300_impl::x300_mb_iface::get_endianness( const uhd::rfnoc::device_id_t /*local_device_id*/) { // FIXME - return uhd::ENDIANNESS_BIG; + return uhd::ENDIANNESS_LITTLE; } uhd::rfnoc::device_id_t x300_impl::x300_mb_iface::get_remote_device_id() |