diff options
-rw-r--r-- | gr-filter/grc/filter_pfb_arb_resampler.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gr-filter/grc/filter_pfb_arb_resampler.xml b/gr-filter/grc/filter_pfb_arb_resampler.xml index b3418b9f2c..6b127074fc 100644 --- a/gr-filter/grc/filter_pfb_arb_resampler.xml +++ b/gr-filter/grc/filter_pfb_arb_resampler.xml @@ -11,9 +11,12 @@ <import>from gnuradio.filter import firdes</import> <make>pfb.arb_resampler_$(type)( $rrate, - $taps, - $nfilts, - $atten) +#if $taps() + taps=$taps, +#else + taps=None, +#end if + flt_size=$nfilts) </make> <callback>set_taps($taps)</callback> <callback>set_rate($rrate)</callback> |