summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/python/gnuradio
diff options
context:
space:
mode:
authorJosh Morman <jmorman@perspectalabs.com>2020-12-17 11:10:05 -0500
committerMarcus Müller <marcus@hostalia.de>2020-12-18 22:36:14 +0100
commit3207374679508769fa561f5d68db8c916d1fe5ad (patch)
treea0817455dc7819b02463133c649ca21fd7b39ff2 /gnuradio-runtime/python/gnuradio
parent96a15f6b0d52f116ee9546be63dce90c4b90238f (diff)
global replace of filter.firdes.WIN_ with fft.window.WIN_
Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
Diffstat (limited to 'gnuradio-runtime/python/gnuradio')
-rw-r--r--gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py b/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py
index 4afd1bd144..be0ec04699 100644
--- a/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py
+++ b/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py
@@ -280,7 +280,7 @@ class GrDataPlotterPsdC(GrDataPlotParent):
self._iscomplex = True
self._npts = 2048
- self._wintype = filter.firdes.WIN_BLACKMAN_hARRIS
+ self._wintype = fft.window.WIN_BLACKMAN_hARRIS
self._fc = 0
self._setup(1)
@@ -313,7 +313,7 @@ class GrDataPlotterPsdF(GrDataPlotParent):
self._iscomplex = False
self._npts = 2048
- self._wintype = filter.firdes.WIN_BLACKMAN_hARRIS
+ self._wintype = fft.window.WIN_BLACKMAN_hARRIS
self._fc = 0
self._setup(1)