[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/02: uhd: Symbolic block names now match
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/02: uhd: Symbolic block names now match the standard naming |
Date: |
Fri, 2 May 2014 21:44:54 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch next
in repository gnuradio.
commit 0c42958b3b3d2b7dbe5ce279f633f336c5e83e73
Author: Martin Braun <address@hidden>
Date: Fri May 2 09:26:15 2014 +0200
uhd: Symbolic block names now match the standard naming
---
gr-uhd/lib/usrp_sink_impl.cc | 2 +-
gr-uhd/lib/usrp_source_impl.cc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gr-uhd/lib/usrp_sink_impl.cc b/gr-uhd/lib/usrp_sink_impl.cc
index b6a9839..7c10366 100644
--- a/gr-uhd/lib/usrp_sink_impl.cc
+++ b/gr-uhd/lib/usrp_sink_impl.cc
@@ -63,7 +63,7 @@ namespace gr {
usrp_sink_impl::usrp_sink_impl(const ::uhd::device_addr_t &device_addr,
const ::uhd::stream_args_t &stream_args,
const std::string &length_tag_name)
- : sync_block("gr uhd usrp sink",
+ : sync_block("usrp_sink",
args_to_io_sig(stream_args),
io_signature::make(0, 0, 0)),
_stream_args(stream_args),
diff --git a/gr-uhd/lib/usrp_source_impl.cc b/gr-uhd/lib/usrp_source_impl.cc
index e57db13..fbd10e9 100644
--- a/gr-uhd/lib/usrp_source_impl.cc
+++ b/gr-uhd/lib/usrp_source_impl.cc
@@ -63,7 +63,7 @@ namespace gr {
usrp_source_impl::usrp_source_impl(const ::uhd::device_addr_t &device_addr,
const ::uhd::stream_args_t
&stream_args):
- sync_block("gr uhd usrp source",
+ sync_block("usrp_source",
io_signature::make(0, 0, 0),
args_to_io_sig(stream_args)),
_stream_args(stream_args),