diff options
author | Josh Blum <josh@joshknows.com> | 2010-11-23 15:46:53 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-11-23 15:46:53 -0800 |
commit | 4691a33f57eed3346bc1002bcae51603d21020e3 (patch) | |
tree | 2b2ab9406aa06e023241c5d07aae4bbb0dbca4ae /host/lib/usrp/usrp_e100/io_impl.cpp | |
parent | f56c1247cbe7b7e90acee2711b5dda3356b9486a (diff) | |
download | uhd-4691a33f57eed3346bc1002bcae51603d21020e3.tar.gz uhd-4691a33f57eed3346bc1002bcae51603d21020e3.tar.bz2 uhd-4691a33f57eed3346bc1002bcae51603d21020e3.zip |
usrp-e100: updated for building with next
Diffstat (limited to 'host/lib/usrp/usrp_e100/io_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp_e100/io_impl.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/host/lib/usrp/usrp_e100/io_impl.cpp b/host/lib/usrp/usrp_e100/io_impl.cpp index 7cb3e25e5..2388482c7 100644 --- a/host/lib/usrp/usrp_e100/io_impl.cpp +++ b/host/lib/usrp/usrp_e100/io_impl.cpp @@ -178,9 +178,7 @@ void usrp_e100_impl::io_init(void){ void usrp_e100_impl::issue_stream_cmd(const stream_cmd_t &stream_cmd){ _io_impl->continuous_streaming = (stream_cmd.stream_mode == stream_cmd_t::STREAM_MODE_START_CONTINUOUS); - _iface->poke32(UE_REG_CTRL_RX_STREAM_CMD, dsp_type1::calc_stream_cmd_word( - stream_cmd, get_max_recv_samps_per_packet() - )); + _iface->poke32(UE_REG_CTRL_RX_STREAM_CMD, dsp_type1::calc_stream_cmd_word(stream_cmd)); _iface->poke32(UE_REG_CTRL_RX_TIME_SECS, boost::uint32_t(stream_cmd.time_spec.get_full_secs())); _iface->poke32(UE_REG_CTRL_RX_TIME_TICKS, stream_cmd.time_spec.get_tick_count(_clock_ctrl->get_fpga_clock_rate())); } |