diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-07-28 17:32:28 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-07-28 17:32:28 -0400 |
commit | 14f4e314fb72707e6ed030fdcd1ba7c383daabab (patch) | |
tree | fd408a49f9aad210cdb299e842fbe74302df71ad /gr-qtgui/examples/pyqt_waterfall_f.py | |
parent | 36437ed2e41130984e0e0ef05aca909bf086a793 (diff) |
qtgui: waterfall plot couldn't really handle multiple signals.
This keeps the internal mechanisms in case we figure out how to do this, but turn off ability to set multiple input signals from the API.
Diffstat (limited to 'gr-qtgui/examples/pyqt_waterfall_f.py')
-rwxr-xr-x | gr-qtgui/examples/pyqt_waterfall_f.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-qtgui/examples/pyqt_waterfall_f.py b/gr-qtgui/examples/pyqt_waterfall_f.py index 7de0c1b3d7..29ae259e5f 100755 --- a/gr-qtgui/examples/pyqt_waterfall_f.py +++ b/gr-qtgui/examples/pyqt_waterfall_f.py @@ -145,7 +145,7 @@ class my_top_block(gr.top_block): thr = gr.throttle(gr.sizeof_float, 100*npts) self.snk1 = qtgui.waterfall_sink_f(npts, gr.firdes.WIN_BLACKMAN_hARRIS, 0, Rs, - "Real Waterfall Example", 1) + "Real Waterfall Example") self.connect(src1, (src,0)) self.connect(src2, (src,1)) |