diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-10-27 14:51:02 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-11-09 14:59:14 -0800 |
commit | 1bd5f44de5485aa835999ee7a6c65ea6836953d1 (patch) | |
tree | 6bfda63eccca9e927efdc6c072d8f484b722644a /host/include | |
parent | 646f05237d68f0e79a8ea8de52c2dd9f6e38e752 (diff) | |
download | uhd-1bd5f44de5485aa835999ee7a6c65ea6836953d1.tar.gz uhd-1bd5f44de5485aa835999ee7a6c65ea6836953d1.tar.bz2 uhd-1bd5f44de5485aa835999ee7a6c65ea6836953d1.zip |
rfnoc: Removed transport endianness as make arg
This is only confusing, since the blocks do not have to care about
endianness. The control interface needs to know (and takes care of it
internally), and the streaming transport does the same (and does not
directly connect to blocks).
Reviewed-By: Michael West <michael.west@ettus.com>
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/rfnoc/block_ctrl_base.hpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/host/include/uhd/rfnoc/block_ctrl_base.hpp b/host/include/uhd/rfnoc/block_ctrl_base.hpp index 725f0d966..724e155bb 100644 --- a/host/include/uhd/rfnoc/block_ctrl_base.hpp +++ b/host/include/uhd/rfnoc/block_ctrl_base.hpp @@ -46,7 +46,6 @@ struct make_args_t { make_args_t(const std::string &key="") : device_index(0), - is_big_endian(true), block_name(""), block_key(key) {} @@ -61,7 +60,6 @@ struct make_args_t // property tree is /mboards/0, pass a subtree starting at /mboards/0 // to the constructor. uhd::property_tree::sptr tree; - bool is_big_endian; //! The name of the block as it will be addressed std::string block_name; //! The key of the block, i.e. how it was registered @@ -391,9 +389,6 @@ protected: //! Root node of this block's properties uhd::fs_path _root_path; - //! Endianness of underlying transport (for data transport) - bool _transport_is_big_endian; - //! Block definition (stores info about the block such as ports) blockdef::sptr _block_def; |