diff options
author | Josh Blum <josh@joshknows.com> | 2010-07-03 16:50:45 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-07-05 13:49:00 -0700 |
commit | 11f2aa1ea0fd6c28a20c6d85f94e41a06b3a6770 (patch) | |
tree | 35f29c651cf400b03c5aba6939dcc03cc35e2ea7 /host/examples/rx_timed_samples.cpp | |
parent | 52ea9b8f90c56c12e978387aee670b45d93d74a5 (diff) | |
download | uhd-11f2aa1ea0fd6c28a20c6d85f94e41a06b3a6770.tar.gz uhd-11f2aa1ea0fd6c28a20c6d85f94e41a06b3a6770.tar.bz2 uhd-11f2aa1ea0fd6c28a20c6d85f94e41a06b3a6770.zip |
uhd: replaced old send and recv with inline wrappers that take a single buffer and look more like the vectored send/recv
Diffstat (limited to 'host/examples/rx_timed_samples.cpp')
-rw-r--r-- | host/examples/rx_timed_samples.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/examples/rx_timed_samples.cpp b/host/examples/rx_timed_samples.cpp index 3c3c3fdc6..9ff8772bc 100644 --- a/host/examples/rx_timed_samples.cpp +++ b/host/examples/rx_timed_samples.cpp @@ -85,7 +85,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ uhd::rx_metadata_t md; std::vector<std::complex<float> > buff(dev->get_max_recv_samps_per_packet()); size_t num_rx_samps = dev->recv( - boost::asio::buffer(buff), md, + &buff.front(), buff.size(), md, uhd::io_type_t::COMPLEX_FLOAT32, uhd::device::RECV_MODE_ONE_PACKET ); |