diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-05-21 17:08:07 -0700 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-07-15 10:12:33 -0700 |
commit | 7e1b567d538011df383c62239ca52fe6887d54d9 (patch) | |
tree | d6d672e4e0d42901b92163ae0a08acafa5d518f8 /host/lib/rfnoc/legacy_compat.cpp | |
parent | cd755b0a51bb136ce4f17a83157c4d8fe5ffa972 (diff) | |
download | uhd-7e1b567d538011df383c62239ca52fe6887d54d9.tar.gz uhd-7e1b567d538011df383c62239ca52fe6887d54d9.tar.bz2 uhd-7e1b567d538011df383c62239ca52fe6887d54d9.zip |
rfnoc: Add update_graph() API call
Blocks that change scaling, tick rate, or sampling rate can now notify
the graph to update streamers. Before, this was handled only by
mult_usrp, and only for DDC and DUC blocks.
Diffstat (limited to 'host/lib/rfnoc/legacy_compat.cpp')
-rw-r--r-- | host/lib/rfnoc/legacy_compat.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/host/lib/rfnoc/legacy_compat.cpp b/host/lib/rfnoc/legacy_compat.cpp index 3f2bc9584..30c3f628f 100644 --- a/host/lib/rfnoc/legacy_compat.cpp +++ b/host/lib/rfnoc/legacy_compat.cpp @@ -406,9 +406,6 @@ public: .set(rate); } } - // Update streamers: - boost::dynamic_pointer_cast<uhd::usrp::device3_impl>(_device) - ->update_rx_streamers(); } void set_tx_rate(const double rate, const size_t chan) @@ -458,9 +455,6 @@ public: .set(rate); } } - // Update streamers: - boost::dynamic_pointer_cast<uhd::usrp::device3_impl>(_device) - ->update_tx_streamers(); } private: // types |