diff options
author | trondeau <trondeau@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-06-18 12:01:36 +0000 |
---|---|---|
committer | trondeau <trondeau@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-06-18 12:01:36 +0000 |
commit | a97a78b08253b241395c3cb323c5e33520790731 (patch) | |
tree | 802ba5d6888d36391626b1a02d8989a8cd382223 /gr-qtgui/src/python/qt_digital.py | |
parent | cea1e0d4ec980936612fcd945cbd03f88e5e869f (diff) |
Fixing a bug and adding the output of pyuic for qt_digital example.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11230 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-qtgui/src/python/qt_digital.py')
-rwxr-xr-x | gr-qtgui/src/python/qt_digital.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-qtgui/src/python/qt_digital.py b/gr-qtgui/src/python/qt_digital.py index 93d11b186e..a9a0bd74a2 100755 --- a/gr-qtgui/src/python/qt_digital.py +++ b/gr-qtgui/src/python/qt_digital.py @@ -148,7 +148,7 @@ class my_top_block(gr.top_block): fftsize = 2048 self.data = scipy.random.randint(0, 255, 1000) - self.src = gr.vector_source_b(self.data, True) + self.src = gr.vector_source_b(self.data.tolist(), True) self.mod = blks2.dqpsk_mod(self.sps, self.excess_bw, self.gray_code, False, False) self.rrctaps = gr.firdes.root_raised_cosine(1, self.sps, 1, self.excess_bw, 21) |