aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/include/uhdlib
diff options
context:
space:
mode:
authorMichael West <michael.west@ettus.com>2020-03-19 12:29:29 -0700
committerAaron Rossetto <aaron.rossetto@ni.com>2020-05-12 12:03:31 -0500
commitd0c162bc7a4ac82f6104506b17d7be05e1780336 (patch)
tree464a4ce1852dcd7ee986dff9a0d1c74267f3ecf5 /host/lib/include/uhdlib
parent12dfb97c8efce40494efb35bdd81d06b6f8b9b62 (diff)
downloaduhd-d0c162bc7a4ac82f6104506b17d7be05e1780336.tar.gz
uhd-d0c162bc7a4ac82f6104506b17d7be05e1780336.tar.bz2
uhd-d0c162bc7a4ac82f6104506b17d7be05e1780336.zip
TwinRX: Remove decimation from frontend
The decimation in the rx_frontend_gen3 was added to reduce the bandwidth between the Radio and the DDC due to the limitation in bandwidth over the crossbar for dynamically connected blocks. The default FPGA image for the X300 now has a static connection between the Radio and DDC, so this is no longer necessary. This change allows the TwinRX receive channels to be time aligned with channels from other daughterboards so they can be used in the same streamer. Signed-off-by: Michael West <michael.west@ettus.com>
Diffstat (limited to 'host/lib/include/uhdlib')
-rw-r--r--host/lib/include/uhdlib/usrp/cores/rx_frontend_core_3000.hpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/host/lib/include/uhdlib/usrp/cores/rx_frontend_core_3000.hpp b/host/lib/include/uhdlib/usrp/cores/rx_frontend_core_3000.hpp
index 6b5dafe2a..60c3feb73 100644
--- a/host/lib/include/uhdlib/usrp/cores/rx_frontend_core_3000.hpp
+++ b/host/lib/include/uhdlib/usrp/cores/rx_frontend_core_3000.hpp
@@ -45,13 +45,4 @@ public:
virtual void set_iq_balance(const std::complex<double>& cor) = 0;
virtual void populate_subtree(uhd::property_tree::sptr subtree) = 0;
-
- /*! Return the sampling rate at the output
- *
- * In real mode, the frontend core will decimate the sampling rate by a
- * factor of 2.
- *
- * \returns RX sampling rate
- */
- virtual double get_output_rate(void) = 0;
};