diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-07-31 16:32:37 -0700 |
---|---|---|
committer | Moritz Fischer <moritz.fischer@ettus.com> | 2017-08-07 16:09:50 -0700 |
commit | b5e43a27ab444f9276e15086871a1c249ba3df2b (patch) | |
tree | 47c238393d2f2830235243cbeed9f38ab20a8489 /host/lib/usrp/usrp_c.cpp | |
parent | ed1c64c8196520c40dbfe406d7c54f2907f3b0fb (diff) | |
download | uhd-b5e43a27ab444f9276e15086871a1c249ba3df2b.tar.gz uhd-b5e43a27ab444f9276e15086871a1c249ba3df2b.tar.bz2 uhd-b5e43a27ab444f9276e15086871a1c249ba3df2b.zip |
C API: Remove API calls that don't map to C++ calls
Specifically, remove set_tx_dc_offset() and set_tx_iq_balance() calls
that require doubles, and were given bools.
Diffstat (limited to 'host/lib/usrp/usrp_c.cpp')
-rw-r--r-- | host/lib/usrp/usrp_c.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
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 ***************************************************************************/ |