diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-04-06 20:22:14 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-04-06 20:27:38 -0700 |
commit | 13031bba1d7310c2b70830eb5a9a23e63808acc9 (patch) | |
tree | 44bd9ef2554ee7a925434fb802ccf5e8d1e65fcb /gr-digital/grc/digital_modulate_vector.xml | |
parent | d4b38e890c5ba3422160ba1ca5db3f55762eeb34 (diff) |
digital: adds corr_est_cc correlation estimator block
This commit is almost entirely based on the correlate_and_sync_cc update
by Nick Foster <bistromath@gmail.com> and Andy Walls <andy@silverblocksystems.net>,
but has been renamed to corr_est_cc in order to be included in the 3.7 API
without compatibility issues.
Diffstat (limited to 'gr-digital/grc/digital_modulate_vector.xml')
-rw-r--r-- | gr-digital/grc/digital_modulate_vector.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gr-digital/grc/digital_modulate_vector.xml b/gr-digital/grc/digital_modulate_vector.xml new file mode 100644 index 0000000000..91614dd3fd --- /dev/null +++ b/gr-digital/grc/digital_modulate_vector.xml @@ -0,0 +1,34 @@ +<?xml version="1.0"?> +<!-- +################################################### +# modulate_vector_bc +################################################### + --> +<block> + <name>Modulate Vector</name> + <key>variable_modulate_vector</key> + <category>Modulators</category> + <import>from gnuradio import digital</import> + <var_make>self.$(id) = $(id) = digital.modulate_vector_bc($mod .to_basic_block(), $data, $taps)</var_make> + <var_value>digital.modulate_vector_bc($mod .to_basic_block(), $data, $taps)</var_value> + <make></make> + + <param> + <name>Modulator</name> + <key>mod</key> + <value></value> + <type>raw</type> + </param> + <param> + <name>Data vector</name> + <key>data</key> + <value></value> + <type>int_vector</type> + </param> + <param> + <name>Filter taps</name> + <key>taps</key> + <value></value> + <type>float_vector</type> + </param> +</block> |