diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-12 21:28:26 +0000 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-12 21:28:26 +0000 |
commit | 8c676eeb973593caecb7270a6106e8592f73a352 (patch) | |
tree | 0211b0ab99c508574e0929631f0e11dd3a94c0aa /host/lib/usrp/usrp_e/usrp_e_impl.hpp | |
parent | a1d768d540d4f78ddf634033892459a5f1d3847f (diff) | |
download | uhd-8c676eeb973593caecb7270a6106e8592f73a352.tar.gz uhd-8c676eeb973593caecb7270a6106e8592f73a352.tar.bz2 uhd-8c676eeb973593caecb7270a6106e8592f73a352.zip |
usrp-e: added codec impl, probe works
Diffstat (limited to 'host/lib/usrp/usrp_e/usrp_e_impl.hpp')
-rw-r--r-- | host/lib/usrp/usrp_e/usrp_e_impl.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp_e/usrp_e_impl.hpp b/host/lib/usrp/usrp_e/usrp_e_impl.hpp index e3249e9de..2457e27cc 100644 --- a/host/lib/usrp/usrp_e/usrp_e_impl.hpp +++ b/host/lib/usrp/usrp_e/usrp_e_impl.hpp @@ -152,6 +152,14 @@ private: void tx_duc_set(const wax::obj &, const wax::obj &); double _duc_freq; size_t _duc_interp; wax_obj_proxy::sptr _tx_duc_proxy; + + //codec functions and settings + 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, _tx_codec_proxy; }; #endif /* INCLUDED_USRP_E_IMPL_HPP */ |