From 6ed6dfae1925123941032c757346d16c0f84540e Mon Sep 17 00:00:00 2001 From: Tom Rondeau Date: Fri, 5 Apr 2013 11:30:22 -0400 Subject: filter: fixed pfb_arb_resampler to handle default taps (None) case. --- gr-filter/grc/pfb_arb_resampler.xml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/gr-filter/grc/pfb_arb_resampler.xml b/gr-filter/grc/pfb_arb_resampler.xml index f3048000a..774cb9186 100644 --- a/gr-filter/grc/pfb_arb_resampler.xml +++ b/gr-filter/grc/pfb_arb_resampler.xml @@ -9,10 +9,14 @@ pfb_arb_resampler_xxx from gnuradio import filter from gnuradio.filter import firdes - filter.pfb_arb_resampler_$(type)( + filter.pfb.arb_resampler_$(type)( $rrate, - $taps, - $nfilts) +#if $taps() + taps=$taps, +#else + taps=None, +#end if + flt_size=$nfilts) set_taps($taps) -- cgit