aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/rx_timed_samples.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-07-06 17:09:50 -0700
committerJosh Blum <josh@joshknows.com>2010-07-06 17:09:50 -0700
commit01067698803179cf8021d30c881eb16f17b184db (patch)
tree0176e1238fb06b639a3a8fdaa471c35044712c14 /host/examples/rx_timed_samples.cpp
parent7bf4370762087eeb2e590414869f53c90c70398d (diff)
parent7f3c4791f7d19d02b7d4515c763b9c2044e96170 (diff)
downloaduhd-01067698803179cf8021d30c881eb16f17b184db.tar.gz
uhd-01067698803179cf8021d30c881eb16f17b184db.tar.bz2
uhd-01067698803179cf8021d30c881eb16f17b184db.zip
Merge branch 'usrp2_mimo'
Diffstat (limited to 'host/examples/rx_timed_samples.cpp')
-rw-r--r--host/examples/rx_timed_samples.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/examples/rx_timed_samples.cpp b/host/examples/rx_timed_samples.cpp
index 8db312690..9ff8772bc 100644
--- a/host/examples/rx_timed_samples.cpp
+++ b/host/examples/rx_timed_samples.cpp
@@ -59,7 +59,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
std::cout << boost::format("Creating the usrp device with: %s...") % args << std::endl;
uhd::usrp::simple_usrp::sptr sdev = uhd::usrp::simple_usrp::make(args);
uhd::device::sptr dev = sdev->get_device();
- std::cout << boost::format("Using Device: %s") % sdev->get_name() << std::endl;
+ std::cout << boost::format("Using Device: %s") % sdev->get_pp_string() << std::endl;
//set properties on the device
std::cout << boost::format("Setting RX Rate: %f Msps...") % (rx_rate/1e6) << std::endl;
@@ -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
);