diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2017-07-13 12:04:37 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2017-07-13 12:04:37 -0700 |
commit | b629e3faa419a2fbd1d4f0a1563a28748dfc9403 (patch) | |
tree | bc6928bfc05e58f2d6b402e576c4c36e6160d232 /gr-uhd | |
parent | 81cd7830a2fc87711d6faa894dddd716903813c3 (diff) | |
parent | 851d7a27f09c27f84ba7f9ad19c3ba835c61af7f (diff) |
Merge branch 'next' into python3
Conflicts:
CMakeLists.txt
Diffstat (limited to 'gr-uhd')
-rw-r--r-- | gr-uhd/lib/usrp_sink_impl.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-uhd/lib/usrp_sink_impl.cc b/gr-uhd/lib/usrp_sink_impl.cc index 4e2e9467dd..ef49c1048e 100644 --- a/gr-uhd/lib/usrp_sink_impl.cc +++ b/gr-uhd/lib/usrp_sink_impl.cc @@ -535,7 +535,8 @@ namespace gr { bool usrp_sink_impl::start(void) { - _tx_stream = _dev->get_tx_stream(_stream_args); + if (not _tx_stream) + _tx_stream = _dev->get_tx_stream(_stream_args); _metadata.start_of_burst = true; _metadata.end_of_burst = false; |