diff options
author | Tom Rondeau | 2011-05-18 12:12:17 +0100 |
---|---|---|
committer | Tom Rondeau | 2011-05-18 12:12:17 +0100 |
commit | 781de9ee2986e96f201e796b5371d6bcb6324982 (patch) | |
tree | 63aa40179453cb7d5c68d1ed367fdbbf744da1ce /grc/blocks | |
parent | 900e227bd6a78609d3f4017291af944edae9a3dd (diff) | |
download | gnuradio-781de9ee2986e96f201e796b5371d6bcb6324982.tar.gz gnuradio-781de9ee2986e96f201e796b5371d6bcb6324982.tar.bz2 gnuradio-781de9ee2986e96f201e796b5371d6bcb6324982.zip |
filter: Adding a concept of output samples per symbol to the PFB clock recovery alg, mostly so you can pass on 2+ samples per symbol to a follow-on equalizer.
Diffstat (limited to 'grc/blocks')
-rw-r--r-- | grc/blocks/gr_pfb_clock_sync.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/grc/blocks/gr_pfb_clock_sync.xml b/grc/blocks/gr_pfb_clock_sync.xml index 26cacfb3e..3e5e65d12 100644 --- a/grc/blocks/gr_pfb_clock_sync.xml +++ b/grc/blocks/gr_pfb_clock_sync.xml @@ -8,7 +8,7 @@ <name>Polyphase Clock Sync</name> <key>gr_pfb_clock_sync_xxx</key> <import>from gnuradio import gr</import> - <make>gr.pfb_clock_sync_$(type)($sps, $alpha, $taps, $filter_size, $init_phase, $max_dev) + <make>gr.pfb_clock_sync_$(type)($sps, $alpha, $taps, $filter_size, $init_phase, $max_dev, $osps) self.$(id).set_beta($beta)</make> <callback>set_taps($taps)</callback> <callback>set_alpha($alpha)</callback> @@ -69,6 +69,11 @@ self.$(id).set_beta($beta)</make> <key>max_dev</key> <type>real</type> </param> + <param> + <name>Output SPS</name> + <key>osps</key> + <type>int</type> + </param> <sink> <name>in</name> <type>$type.input</type> |