[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r10816 - gnuradio/branches/developers/trondeau/qtdevel
From: |
trondeau |
Subject: |
[Commit-gnuradio] r10816 - gnuradio/branches/developers/trondeau/qtdevel2/gr-qtgui/src/python |
Date: |
Sun, 12 Apr 2009 21:38:00 -0600 (MDT) |
Author: trondeau
Date: 2009-04-12 21:38:00 -0600 (Sun, 12 Apr 2009)
New Revision: 10816
Modified:
gnuradio/branches/developers/trondeau/qtdevel2/gr-qtgui/src/python/pyqt_example.py
gnuradio/branches/developers/trondeau/qtdevel2/gr-qtgui/src/python/pyqt_example_f.py
Log:
Updates for new interface
Modified:
gnuradio/branches/developers/trondeau/qtdevel2/gr-qtgui/src/python/pyqt_example.py
===================================================================
---
gnuradio/branches/developers/trondeau/qtdevel2/gr-qtgui/src/python/pyqt_example.py
2009-04-13 00:39:42 UTC (rev 10815)
+++
gnuradio/branches/developers/trondeau/qtdevel2/gr-qtgui/src/python/pyqt_example.py
2009-04-13 03:38:00 UTC (rev 10816)
@@ -114,7 +114,9 @@
channel = blks2.channel_model(0.001)
thr = gr.throttle(gr.sizeof_gr_complex, 100*fftsize)
self.snk1 = qtgui.sink_c(fftsize, gr.firdes.WIN_BLACKMAN_hARRIS,
- -Rs/2, Rs/2)
+ -Rs/2, Rs/2,
+ "Complex Signal Example",
+ True, True, False, True, False)
self.connect(src1, (src,0))
self.connect(src2, (src,1))
Modified:
gnuradio/branches/developers/trondeau/qtdevel2/gr-qtgui/src/python/pyqt_example_f.py
===================================================================
---
gnuradio/branches/developers/trondeau/qtdevel2/gr-qtgui/src/python/pyqt_example_f.py
2009-04-13 00:39:42 UTC (rev 10815)
+++
gnuradio/branches/developers/trondeau/qtdevel2/gr-qtgui/src/python/pyqt_example_f.py
2009-04-13 03:38:00 UTC (rev 10816)
@@ -113,7 +113,9 @@
src = gr.add_ff()
thr = gr.throttle(gr.sizeof_float, 100*fftsize)
self.snk1 = qtgui.sink_f(fftsize, gr.firdes.WIN_BLACKMAN_hARRIS,
- -Rs/2, Rs/2)
+ -Rs/2, Rs/2,
+ "Float Signal Example",
+ True, True, False, True, False)
self.connect(src1, (src,0))
self.connect(src2, (src,1))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r10816 - gnuradio/branches/developers/trondeau/qtdevel2/gr-qtgui/src/python,
trondeau <=