aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Long <willcode4@gmail.com>2021-12-04 05:48:36 -0500
committerJeff Long <willcode4@gmail.com>2021-12-04 06:25:20 -0500
commitefe1ec7294aeeab5d3ae7aaf31b02f0b7b1e1f52 (patch)
tree29bd9cf37de773803895961071eb0dee0ff1591f
parentqtgui range: setRange() requires int (diff)
downloadgnuradio-efe1ec7294aeeab5d3ae7aaf31b02f0b7b1e1f52.tar.xz
gnuradio-efe1ec7294aeeab5d3ae7aaf31b02f0b7b1e1f52.zip
filter: fix typo in grc yml for band reject filter set_taps callback
Signed-off-by: Jeff Long <willcode4@gmail.com>
-rw-r--r--gr-filter/grc/variable_band_reject_filter_taps.block.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-filter/grc/variable_band_reject_filter_taps.block.yml b/gr-filter/grc/variable_band_reject_filter_taps.block.yml
index 03e0a1333..92818c910 100644
--- a/gr-filter/grc/variable_band_reject_filter_taps.block.yml
+++ b/gr-filter/grc/variable_band_reject_filter_taps.block.yml
@@ -40,7 +40,7 @@ templates:
self.${id} = ${id} = firdes.band_reject(${gain}, ${samp_rate}, ${low_cutoff_freq},\
${high_cutoff_freq}, ${width}, ${win}, ${beta})
callbacks:
- - self.set_${id}(firdes.${type}(${gain}, ${samp_rate}, ${low_cutoff_freq}, ${high_cutoff_freq}, ${width}, ${win}, ${beta}))
+ - self.set_${id}(firdes.band_reject(${gain}, ${samp_rate}, ${low_cutoff_freq}, ${high_cutoff_freq}, ${width}, ${win}, ${beta}))
cpp_templates:
includes: ['#include <gnuradio/filter/firdes.h>']