diff options
author | Josh Blum <josh@joshknows.com> | 2010-06-14 22:32:54 +0000 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-06-14 22:32:54 +0000 |
commit | ec451d811c335af672d7a8ffbcfd3d0a1a645b2b (patch) | |
tree | 06b84003704fcd3e930ccb27c0e9fa432d653ce4 /host/lib/usrp/usrp_e/usrp_e_impl.hpp | |
parent | 617488fd6a4f6a2efa0c966a07d6ac1b6201c3aa (diff) | |
download | uhd-ec451d811c335af672d7a8ffbcfd3d0a1a645b2b.tar.gz uhd-ec451d811c335af672d7a8ffbcfd3d0a1a645b2b.tar.bz2 uhd-ec451d811c335af672d7a8ffbcfd3d0a1a645b2b.zip |
file option for rx timed samples, misc fixes
Diffstat (limited to 'host/lib/usrp/usrp_e/usrp_e_impl.hpp')
-rw-r--r-- | host/lib/usrp/usrp_e/usrp_e_impl.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp_e/usrp_e_impl.hpp b/host/lib/usrp/usrp_e/usrp_e_impl.hpp index 657d2d225..487e295cb 100644 --- a/host/lib/usrp/usrp_e/usrp_e_impl.hpp +++ b/host/lib/usrp/usrp_e/usrp_e_impl.hpp @@ -80,8 +80,8 @@ public: //the io interface size_t send(const boost::asio::const_buffer &, const uhd::tx_metadata_t &, const uhd::io_type_t &, send_mode_t); size_t recv(const boost::asio::mutable_buffer &, uhd::rx_metadata_t &, const uhd::io_type_t &, recv_mode_t); - size_t get_max_send_samps_per_packet(void) const{return _max_num_samples;} - size_t get_max_recv_samps_per_packet(void) const{return _max_num_samples;} + size_t get_max_send_samps_per_packet(void) const{return 300;} + size_t get_max_recv_samps_per_packet(void) const{return 300;} private: //interface to ioctls and file descriptor |