diff options
author | Thomas Tsou <ttsou@vt.edu> | 2010-08-23 15:13:44 -0700 |
---|---|---|
committer | Thomas Tsou <ttsou@vt.edu> | 2010-08-23 15:18:01 -0700 |
commit | 4021779856d6b971fa8add5f617528158bf727a2 (patch) | |
tree | a766090f228a3b795af4297d4b5b01237e6d3ee1 /host/lib/usrp/usrp1/usrp1_impl.hpp | |
parent | f65bdc31e4432d09d52b7f45d5bfbd1f945a1a6f (diff) | |
download | uhd-4021779856d6b971fa8add5f617528158bf727a2.tar.gz uhd-4021779856d6b971fa8add5f617528158bf727a2.tar.bz2 uhd-4021779856d6b971fa8add5f617528158bf727a2.zip |
usrp1: Refactor I/O implementation
Diffstat (limited to 'host/lib/usrp/usrp1/usrp1_impl.hpp')
-rw-r--r-- | host/lib/usrp/usrp1/usrp1_impl.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp1/usrp1_impl.hpp b/host/lib/usrp/usrp1/usrp1_impl.hpp index f57f9a09a..5934d1779 100644 --- a/host/lib/usrp/usrp1/usrp1_impl.hpp +++ b/host/lib/usrp/usrp1/usrp1_impl.hpp @@ -124,6 +124,10 @@ private: void issue_stream_cmd(const uhd::stream_cmd_t &stream_cmd); void handle_overrun(size_t); + //underrun and overrun poll intervals + size_t _rx_samps_per_poll_interval; + size_t _tx_samps_per_poll_interval; + //otw types uhd::otw_type_t _rx_otw_type; uhd::otw_type_t _tx_otw_type; |