Change default bandwidth to 25 MHz to match maximum USRP2 bandwidth
[debian/gnuradio] / grc / blocks / blks2_pfb_arb_resampler.xml
1 <?xml version="1.0"?>
2 <!--
3 ###################################################
4 ##Polyphase Arbitrary Resampler
5 ###################################################
6  -->
7 <block>
8         <name>Polyphase Resampler</name>
9         <key>blks2_pfb_arb_resampler_ccf</key>
10         <import>from gnuradio import blks2</import>
11         <import>from gnuradio.gr import firdes</import>
12         <make>blks2.pfb_arb_resampler_ccf(
13         $rate,
14         $taps,
15         $size,
16 )</make>
17         <callback>set_taps($taps)</callback>
18         <param>
19                 <name>Resample Rate</name>
20                 <key>rate</key>
21                 <type>real</type>
22         </param>
23         <param>
24                 <name>Taps</name>
25                 <key>taps</key>
26                 <type>real_vector</type>
27         </param>
28         <param>
29                 <name>Size (# phases)</name>
30                 <key>size</key>
31                 <value>32</value>
32                 <type>int</type>
33         </param>
34         <sink>
35                 <name>in</name>
36                 <type>complex</type>
37         </sink>
38         <source>
39                 <name>out</name>
40                 <type>complex</type>
41         </source>
42 </block>