diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-05-21 16:20:43 -0700 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-07-15 10:12:33 -0700 |
commit | cd755b0a51bb136ce4f17a83157c4d8fe5ffa972 (patch) | |
tree | ffd0d47ce04a5f4bdec97a012443ab40872687ab /host/lib/usrp/device3/device3_impl.hpp | |
parent | db9285586213f0100dd9f0caf6e69e872d9a6718 (diff) | |
download | uhd-cd755b0a51bb136ce4f17a83157c4d8fe5ffa972.tar.gz uhd-cd755b0a51bb136ce4f17a83157c4d8fe5ffa972.tar.bz2 uhd-cd755b0a51bb136ce4f17a83157c4d8fe5ffa972.zip |
device3: Remove unused 'rate' argument from update_?x_streamers()
Diffstat (limited to 'host/lib/usrp/device3/device3_impl.hpp')
-rw-r--r-- | host/lib/usrp/device3/device3_impl.hpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/host/lib/usrp/device3/device3_impl.hpp b/host/lib/usrp/device3/device3_impl.hpp index 62fd399ac..17f6a3f6f 100644 --- a/host/lib/usrp/device3/device3_impl.hpp +++ b/host/lib/usrp/device3/device3_impl.hpp @@ -170,10 +170,15 @@ protected: /*********************************************************************** * Streaming-related **********************************************************************/ - // The 'rate' argument is so we can use these as subscribers to rate changes public: // TODO make these protected again - void update_rx_streamers(double rate = -1.0); - void update_tx_streamers(double rate = -1.0); + /*! Update tick rate, samp rate, and scaling on the streamers by querying + * the graph. + */ + void update_rx_streamers(); + /*! Update tick rate, samp rate, and scaling on the streamers by querying + * the graph. + */ + void update_tx_streamers(); protected: /*********************************************************************** |