diff options
| -rw-r--r-- | host/include/uhd/usrp/usrp.h | 17 | ||||
| -rw-r--r-- | host/lib/usrp/usrp_c.cpp | 20 | 
2 files changed, 0 insertions, 37 deletions
diff --git a/host/include/uhd/usrp/usrp.h b/host/include/uhd/usrp/usrp.h index bb186a278..d6a7e1bde 100644 --- a/host/include/uhd/usrp/usrp.h +++ b/host/include/uhd/usrp/usrp.h @@ -1138,23 +1138,6 @@ UHD_API uhd_error uhd_usrp_get_tx_sensor_names(      uhd_string_vector_handle *sensor_names_out  ); -//! Enable or disable TX DC offset correction for the given channel -/*! - * See uhd::usrp::multi_usrp::set_tx_dc_offset() for more details. - */ -UHD_API uhd_error uhd_usrp_set_tx_dc_offset_enabled( -    uhd_usrp_handle h, -    bool enb, -    size_t chan -); - -//! Enable or disable TX IQ imbalance correction for the given channel -UHD_API uhd_error uhd_usrp_set_tx_iq_balance_enabled( -    uhd_usrp_handle h, -    bool enb, -    size_t chan -); -  /****************************************************************************   * GPIO methods   ***************************************************************************/ diff --git a/host/lib/usrp/usrp_c.cpp b/host/lib/usrp/usrp_c.cpp index 3d50bd8be..a61a1cf02 100644 --- a/host/lib/usrp/usrp_c.cpp +++ b/host/lib/usrp/usrp_c.cpp @@ -1404,26 +1404,6 @@ uhd_error uhd_usrp_get_tx_sensor_names(      )  } -uhd_error uhd_usrp_set_tx_dc_offset_enabled( -    uhd_usrp_handle h, -    bool enb, -    size_t chan -){ -    UHD_SAFE_C_SAVE_ERROR(h, -        USRP(h)->set_tx_dc_offset(enb, chan); -    ) -} - -uhd_error uhd_usrp_set_tx_iq_balance_enabled( -    uhd_usrp_handle h, -    bool enb, -    size_t chan -){ -    UHD_SAFE_C_SAVE_ERROR(h, -        USRP(h)->set_tx_iq_balance(enb, chan); -    ) -} -  /****************************************************************************   * GPIO methods   ***************************************************************************/  | 
