diff options
author | Ben Hilburn <ben.hilburn@ettus.com> | 2014-01-14 12:48:47 -0800 |
---|---|---|
committer | Ben Hilburn <ben.hilburn@ettus.com> | 2014-01-14 12:48:47 -0800 |
commit | c6b36ae4085ae71f3aa30088566b17fc1ab27ed0 (patch) | |
tree | 7f434b1b75df5a6d790faf7b34e9822252b5771b | |
parent | 4d89122bc70283f2dcddfc3f534875a5dbe4a75e (diff) | |
parent | 61c5ddbe9cc391da5e70bd90bae8b9b2dcab280a (diff) | |
download | uhd-c6b36ae4085ae71f3aa30088566b17fc1ab27ed0.tar.gz uhd-c6b36ae4085ae71f3aa30088566b17fc1ab27ed0.tar.bz2 uhd-c6b36ae4085ae71f3aa30088566b17fc1ab27ed0.zip |
Merge remote-tracking branch; fixing timed_commands example
-rw-r--r-- | host/examples/test_timed_commands.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/host/examples/test_timed_commands.cpp b/host/examples/test_timed_commands.cpp index 224961d04..10336ec34 100644 --- a/host/examples/test_timed_commands.cpp +++ b/host/examples/test_timed_commands.cpp @@ -87,16 +87,17 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ //setup streaming std::cout << std::endl; std::cout << "About to start streaming using timed command:" << std::endl; - + //create a receive streamer uhd::stream_args_t stream_args("fc32"); //complex floats uhd::rx_streamer::sptr rx_stream = usrp->get_rx_stream(stream_args); - + uhd::stream_cmd_t stream_cmd(uhd::stream_cmd_t::STREAM_MODE_NUM_SAMPS_AND_DONE); stream_cmd.num_samps = 100; - stream_cmd.stream_now = true; + stream_cmd.stream_now = false; const uhd::time_spec_t stream_time = usrp->get_time_now() + uhd::time_spec_t(0.1); usrp->set_command_time(stream_time); + stream_cmd.time_spec = stream_time; rx_stream->issue_stream_cmd(stream_cmd); usrp->clear_command_time(); @@ -120,7 +121,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ ) % stream_time.get_full_secs() % stream_time.get_frac_secs() << std::endl; std::cout << boost::format( "Difference between stream time and first packet: %f us" - ) % ((md.time_spec-stream_time).get_real_secs()/100*1e6) << std::endl; + ) % ((md.time_spec-stream_time).get_real_secs()*1e6) << std::endl; //finished std::cout << std::endl << "Done!" << std::endl << std::endl; |