diff options
author | Nick Foster <nick@nerdnetworks.org> | 2010-07-26 17:48:19 -0700 |
---|---|---|
committer | Nick Foster <nick@nerdnetworks.org> | 2010-07-26 17:48:19 -0700 |
commit | 5196d701384a9986ba6a166a02c6775e83f264f6 (patch) | |
tree | 5920ca6d127c53932a1b3f95a11ea47532edff7a /host/lib/usrp/usrp2/usrp2_impl.hpp | |
parent | d8f3980e45458cf68c8efaa029e492a1b8d08354 (diff) | |
parent | 6799b5bec4403cc4458181cb39fae2f960f2a7cd (diff) | |
download | uhd-5196d701384a9986ba6a166a02c6775e83f264f6.tar.gz uhd-5196d701384a9986ba6a166a02c6775e83f264f6.tar.bz2 uhd-5196d701384a9986ba6a166a02c6775e83f264f6.zip |
Merge branch 'codec_gains' of git@ettus.sourcerepo.com:ettus/uhdpriv into usrp2p2
Diffstat (limited to 'host/lib/usrp/usrp2/usrp2_impl.hpp')
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_impl.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_impl.hpp b/host/lib/usrp/usrp2/usrp2_impl.hpp index cae1b21d6..eb61609c2 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.hpp +++ b/host/lib/usrp/usrp2/usrp2_impl.hpp @@ -161,6 +161,15 @@ private: void update_clock_config(void); void set_time_spec(const uhd::time_spec_t &time_spec, bool now); + //properties interface for the codec + void codec_init(void); + void rx_codec_get(const wax::obj &, wax::obj &); + void rx_codec_set(const wax::obj &, const wax::obj &); + void tx_codec_get(const wax::obj &, wax::obj &); + void tx_codec_set(const wax::obj &, const wax::obj &); + wax_obj_proxy::sptr _rx_codec_proxy; + wax_obj_proxy::sptr _tx_codec_proxy; + //properties interface for rx dboard void rx_dboard_get(const wax::obj &, wax::obj &); void rx_dboard_set(const wax::obj &, const wax::obj &); |