diff options
author | Tom Rondeau | 2011-10-26 07:48:39 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-10-26 08:18:57 -0400 |
commit | 07ca6eb3d617fdca52153acaccf59dbcdd9e5061 (patch) | |
tree | 616e41ee121c607e3ee65345699ba4425c4cfea4 /gr-digital/grc/digital_cpmmod_bc.xml | |
parent | 5c9877d0e9cda090ac5065975ce2c6babcb953f9 (diff) | |
download | gnuradio-07ca6eb3d617fdca52153acaccf59dbcdd9e5061.tar.gz gnuradio-07ca6eb3d617fdca52153acaccf59dbcdd9e5061.tar.bz2 gnuradio-07ca6eb3d617fdca52153acaccf59dbcdd9e5061.zip |
grc: fixing grc blocks not properly moved in to digital.
Diffstat (limited to 'gr-digital/grc/digital_cpmmod_bc.xml')
-rw-r--r-- | gr-digital/grc/digital_cpmmod_bc.xml | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/gr-digital/grc/digital_cpmmod_bc.xml b/gr-digital/grc/digital_cpmmod_bc.xml new file mode 100644 index 000000000..01174ef80 --- /dev/null +++ b/gr-digital/grc/digital_cpmmod_bc.xml @@ -0,0 +1,69 @@ +<?xml version="1.0"?> +<!-- +################################################### +## Continuous Phase Modulation +################################################### + --> +<block> + <name>Continuous Phase Modulation</name> + <key>digital_cpmmod_bc</key> + <import>from gnuradio import gr, digital</import> + <make>digital.cpmmod_bc($type, $mod_index, $samples_per_symbol, $L, $beta)</make> + <param> + <name>CPM Type</name> + <key>type</key> + <type>enum</type> + <option> + <name>L-REC (Rectangular phase response)</name> + <key>gr.cpm.LREC</key> + </option> + <option> + <name>L-RC (Raised Cosine)</name> + <key>gr.cpm.LRC</key> + </option> + <option> + <name>L-SRC (Spectral raised cosine)</name> + <key>gr.cpm.LSRC</key> + </option> + <option> + <name>TFM (Tamed frequency modulation)</name> + <key>gr.cpm.TFM</key> + </option> + <option> + <name>Gaussian</name> + <key>gr.cpm.GAUSSIAN</key> + </option> + </param> + <param> + <name>Modulation Index</name> + <key>mod_index</key> + <value>0.5</value> + <type>real</type> + </param> + <param> + <name>Samples/Symbol</name> + <key>samples_per_symbol</key> + <value>4</value> + <type>int</type> + </param> + <param> + <name>Pulse Duration (Symbols)</name> + <key>L</key> + <value>4</value> + <type>int</type> + </param> + <param> + <name>Phase Response Parameter (BT or Beta)</name> + <key>beta</key> + <value>0.3</value> + <type>real</type> + </param> + <sink> + <name>in</name> + <type>byte</type> + </sink> + <source> + <name>out</name> + <type>complex</type> + </source> +</block> |