diff options
author | Tim O'Shea <tim.oshea753@gmail.com> | 2016-06-22 22:11:49 -0400 |
---|---|---|
committer | Tim O'Shea <tim.oshea753@gmail.com> | 2016-06-22 22:11:49 -0400 |
commit | 0dafca470824d63d1c25b5979da16ad8593fe80a (patch) | |
tree | 4835248609c4f383fedf4e90175b72d38f2f390e | |
parent | de21ea91d6ceb7b58141a249dadd4f040e8143bd (diff) |
qtgui: remote debug print, remove check for start tag, tags assumped to be burst sample relative incoming to plot
-rw-r--r-- | gr-qtgui/lib/time_sink_c_impl.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gr-qtgui/lib/time_sink_c_impl.cc b/gr-qtgui/lib/time_sink_c_impl.cc index 16019ed841..209f03340f 100644 --- a/gr-qtgui/lib/time_sink_c_impl.cc +++ b/gr-qtgui/lib/time_sink_c_impl.cc @@ -717,11 +717,10 @@ namespace gr { // add tag info if it is present in metadata if(pmt::is_dict(dict)){ - if(pmt::dict_has_key(dict, pmt::mp("tags")) && pmt::dict_has_key(dict,pmt::mp("start"))){ + if(pmt::dict_has_key(dict, pmt::mp("tags"))){ d_tags.clear(); pmt::pmt_t tags = pmt::dict_ref(dict, pmt::mp("tags"), pmt::PMT_NIL); int len = pmt::length(tags); - pmt::print(tags); for(int i=0; i<len; i++){ // get tag info from list pmt::pmt_t tup = pmt::vector_ref(tags, i); |