diff options
author | Jiří Pinkava <j-pi@seznam.cz> | 2016-06-26 00:36:54 +0200 |
---|---|---|
committer | Jiří Pinkava <j-pi@seznam.cz> | 2016-06-26 22:40:34 +0200 |
commit | 819d544f6672c2ca17e1e8742c9f815ff129442c (patch) | |
tree | 6169ee588dbbeea971b4f5ede52a4a2fd0ed6aed /gnuradio-runtime/examples/mp-sched | |
parent | a99f8ac8cc9a15ab608081c10a7733fce125e276 (diff) |
fix various python imports
Diffstat (limited to 'gnuradio-runtime/examples/mp-sched')
-rwxr-xr-x | gnuradio-runtime/examples/mp-sched/wfm_rcv_pll_to_wav.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/examples/mp-sched/wfm_rcv_pll_to_wav.py b/gnuradio-runtime/examples/mp-sched/wfm_rcv_pll_to_wav.py index 7cf3210b0e..1a43dc3a11 100755 --- a/gnuradio-runtime/examples/mp-sched/wfm_rcv_pll_to_wav.py +++ b/gnuradio-runtime/examples/mp-sched/wfm_rcv_pll_to_wav.py @@ -20,7 +20,7 @@ # Boston, MA 02110-1301, USA. # -from gnuradio import gr, gru, eng_notation, optfir +from gnuradio import gr, gru, eng_notation, filter from gnuradio import audio from gnuradio import analog from gnuradio import blocks @@ -61,7 +61,7 @@ class wfm_rx_block (gr.top_block): audio_rate = demod_rate / audio_decimation # 32 kHz - chan_filt_coeffs = optfir.low_pass (1, # gain + chan_filt_coeffs = filter.optfir.low_pass (1, # gain usrp_rate, # sampling rate 80e3, # passband cutoff 115e3, # stopband cutoff |