diff options
author | Martin Braun <martin.braun@ettus.com> | 2014-10-09 14:19:16 +0200 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2014-10-09 14:19:16 +0200 |
commit | 2bf6ac511e024be5bf015e19704dba5ad023c637 (patch) | |
tree | 78ce1239bab664b228f97cc2509104069520a50f /host/include | |
parent | ff7ede9685a4cf0ee4ffd5863b1ad1818e0c2401 (diff) | |
download | uhd-2bf6ac511e024be5bf015e19704dba5ad023c637.tar.gz uhd-2bf6ac511e024be5bf015e19704dba5ad023c637.tar.bz2 uhd-2bf6ac511e024be5bf015e19704dba5ad023c637.zip |
uhd: Removed deprecated functions from multi_usrp
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/usrp/multi_usrp.hpp | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/host/include/uhd/usrp/multi_usrp.hpp b/host/include/uhd/usrp/multi_usrp.hpp index 6560ad8b9..6fd22ff23 100644 --- a/host/include/uhd/usrp/multi_usrp.hpp +++ b/host/include/uhd/usrp/multi_usrp.hpp @@ -547,15 +547,6 @@ public: virtual std::vector<std::string> get_rx_antennas(size_t chan = 0) = 0; /*! - * Get the locked status of the LO on the frontend. - * \param chan the channel index 0 to N-1 - * \return true for locked - */ - UHD_DEPRECATED bool get_rx_lo_locked(size_t chan = 0){ - return this->get_rx_sensor("lo_locked", chan).to_bool(); - } - - /*! * Set the RX bandwidth on the frontend. * \param bandwidth the bandwidth in Hz * \param chan the channel index 0 to N-1 @@ -577,16 +568,6 @@ public: virtual meta_range_t get_rx_bandwidth_range(size_t chan = 0) = 0; /*! - * Read the RSSI value on the RX frontend. - * \param chan the channel index 0 to N-1 - * \return the rssi in dB - * \throw exception if RSSI readback not supported - */ - UHD_DEPRECATED double read_rssi(size_t chan = 0){ - return this->get_rx_sensor("rssi", chan).to_real(); - } - - /*! * Get the dboard interface object for the RX frontend. * The dboard interface gives access to GPIOs, SPI, I2C, low-speed ADC and DAC. * Use at your own risk! @@ -804,15 +785,6 @@ public: virtual std::vector<std::string> get_tx_antennas(size_t chan = 0) = 0; /*! - * Get the locked status of the LO on the frontend. - * \param chan the channel index 0 to N-1 - * \return true for locked - */ - UHD_DEPRECATED bool get_tx_lo_locked(size_t chan = 0){ - return this->get_tx_sensor("lo_locked", chan).to_bool(); - } - - /*! * Set the TX bandwidth on the frontend. * \param bandwidth the bandwidth in Hz * \param chan the channel index 0 to N-1 |