diff options
author | Balint Seeber <balint@ettus.com> | 2013-11-19 14:44:18 -0800 |
---|---|---|
committer | Balint Seeber <balint@ettus.com> | 2013-11-19 14:44:18 -0800 |
commit | 465da9a7d38a6f651213b8189992dd65c800d61a (patch) | |
tree | e348e177b9baedf897ee343237377a422bbe07f8 /host/lib/usrp/b200 | |
parent | 48ab2a971e73e46a7165ca5ebfff9a946fd5e981 (diff) | |
download | uhd-465da9a7d38a6f651213b8189992dd65c800d61a.tar.gz uhd-465da9a7d38a6f651213b8189992dd65c800d61a.tar.bz2 uhd-465da9a7d38a6f651213b8189992dd65c800d61a.zip |
b200: Reverted RX SPP 2044 -> 2000 (unresolved issue with one app, wait for FPGA bump)
Diffstat (limited to 'host/lib/usrp/b200')
-rw-r--r-- | host/lib/usrp/b200/b200_io_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/b200/b200_io_impl.cpp b/host/lib/usrp/b200/b200_io_impl.cpp index 7b09c87df..4fe90bd4a 100644 --- a/host/lib/usrp/b200/b200_io_impl.cpp +++ b/host/lib/usrp/b200/b200_io_impl.cpp @@ -256,7 +256,7 @@ rx_streamer::sptr b200_impl::get_rx_stream(const uhd::stream_args_t &args_) const size_t bpp = _data_transport->get_recv_frame_size() - hdr_size; const size_t bpi = convert::get_bytes_per_item(args.otw_format); size_t spp = unsigned(args.args.cast<double>("spp", bpp/bpi)); - spp = std::min<size_t>(2044, spp); //magic maximum for framing at full rate + spp = std::min<size_t>(2000, spp); //magic maximum for framing at full rate //make the new streamer given the samples per packet if (not my_streamer) my_streamer = boost::make_shared<sph::recv_packet_streamer>(spp); |