diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-04-24 14:10:26 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-04-24 15:21:54 -0400 |
commit | d78d1ce2069ae20c86f9f301d89f303c2ae5942e (patch) | |
tree | 1bd2b6b5728b7bd1356b6ad260b7eb5bfbcd8038 /gr-qtgui/lib/time_sink_c_impl.cc | |
parent | e2afce984c606a1373150c5f6f51a4b00cd0b47a (diff) |
qtgui: adding a trigger for the constellation plots. Probably most useful with tags, but normal and auto triggering supported, too.
Updates test_corr_and_sync block to use the time_est tag to trigger constellation plot.
Diffstat (limited to 'gr-qtgui/lib/time_sink_c_impl.cc')
-rw-r--r-- | gr-qtgui/lib/time_sink_c_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-qtgui/lib/time_sink_c_impl.cc b/gr-qtgui/lib/time_sink_c_impl.cc index e86ffca227..499529c57d 100644 --- a/gr-qtgui/lib/time_sink_c_impl.cc +++ b/gr-qtgui/lib/time_sink_c_impl.cc @@ -67,7 +67,7 @@ namespace gr { for(int n = 0; n < d_nconnections; n++) { d_buffers.push_back((double*)volk_malloc(d_buffer_size*sizeof(double), - volk_get_alignment())); + volk_get_alignment())); memset(d_buffers[n], 0, d_buffer_size*sizeof(double)); } |