diff options
author | Matt Ettus | 2009-10-06 15:37:30 -0700 |
---|---|---|
committer | Matt Ettus | 2009-10-06 15:37:30 -0700 |
commit | 2d93968cd63aa89cbd218f7d70ed2ae44393bab1 (patch) | |
tree | 22fdf18c71b0653a6b065e4fcb7bf8563b67b645 /grc/blocks/gr_pfb_clock_sync.xml | |
parent | 28e710b3cfb5d23320d307a6e17850d3b4f25529 (diff) | |
download | gnuradio-2d93968cd63aa89cbd218f7d70ed2ae44393bab1.tar.gz gnuradio-2d93968cd63aa89cbd218f7d70ed2ae44393bab1.tar.bz2 gnuradio-2d93968cd63aa89cbd218f7d70ed2ae44393bab1.zip |
rename and make output optional
Diffstat (limited to 'grc/blocks/gr_pfb_clock_sync.xml')
-rw-r--r-- | grc/blocks/gr_pfb_clock_sync.xml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/grc/blocks/gr_pfb_clock_sync.xml b/grc/blocks/gr_pfb_clock_sync.xml new file mode 100644 index 000000000..9e2f3fa9c --- /dev/null +++ b/grc/blocks/gr_pfb_clock_sync.xml @@ -0,0 +1,53 @@ +<?xml version="1.0"?> +<!-- +################################################### +## Polyphase Filter based Clock Sync +################################################### + --> +<block> + <name>Polyphase Clock Sync</name> + <key>gr_pfb_clock_sync_ccf</key> + <import>from gnuradio import gr</import> + <make>gr.pfb_clock_sync_ccf($sps, $gain, $taps, $filter_size, $init_phase)</make> + <callback>set_taps($taps)</callback> + <callback>set_gain($gain)</callback> + + <param> + <name>Samples/Symbol</name> + <key>sps</key> + <type>real</type> + </param> + <param> + <name>Gain</name> + <key>gain</key> + <type>real</type> + </param> + <param> + <name>Taps</name> + <key>taps</key> + <type>real_vector</type> + </param> + <param> + <name>Filter Size</name> + <key>filter_size</key> + <type>int</type> + </param> + <param> + <name>Initial Phase</name> + <key>init_phase</key> + <type>real</type> + </param> + <sink> + <name>in</name> + <type>complex</type> + </sink> + <source> + <name>out</name> + <type>complex</type> + </source> + <source> + <name>err</name> + <type>float</type> + <optional>1</optional> + </source> +</block> |