diff options
author | Josh Blum <josh@joshknows.com> | 2010-07-01 18:32:37 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-07-05 13:45:16 -0700 |
commit | 6469d2419f8564c37f8fd6870aedbc990f06e108 (patch) | |
tree | 364b780988d4216d122adc5e7cab74d05889e39e /host/examples/tx_timed_samples.cpp | |
parent | 3b1473d5a3fbfb89e9ddc5575e855644707718d0 (diff) | |
download | uhd-6469d2419f8564c37f8fd6870aedbc990f06e108.tar.gz uhd-6469d2419f8564c37f8fd6870aedbc990f06e108.tar.bz2 uhd-6469d2419f8564c37f8fd6870aedbc990f06e108.zip |
uhd: filling in mimo usrp implementation, renamed get_name to get_pp_string for simple and mimo usrp
Diffstat (limited to 'host/examples/tx_timed_samples.cpp')
-rw-r--r-- | host/examples/tx_timed_samples.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/examples/tx_timed_samples.cpp b/host/examples/tx_timed_samples.cpp index 333f03fbe..846d9b6f4 100644 --- a/host/examples/tx_timed_samples.cpp +++ b/host/examples/tx_timed_samples.cpp @@ -61,7 +61,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 TX Rate: %f Msps...") % (tx_rate/1e6) << std::endl; |