diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-10-22 21:35:04 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-10-22 21:35:04 -0400 |
commit | 0723682d4f99a8dbe379a9aed0558650a977663e (patch) | |
tree | 7f30d2a1a87fdfe2d5b8667d91fb7ece7cbfdf62 /gr-analog/grc/analog_cpfsk_bc.xml | |
parent | 502eeffa9f5ebeec092be1954efeab4992ef9796 (diff) |
analog: adding GRC blocks for:
- AGC
- AGC2
- Feedforward AGC
- CPFSK
- CTCSS squelch
- DPLL
Diffstat (limited to 'gr-analog/grc/analog_cpfsk_bc.xml')
-rw-r--r-- | gr-analog/grc/analog_cpfsk_bc.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gr-analog/grc/analog_cpfsk_bc.xml b/gr-analog/grc/analog_cpfsk_bc.xml new file mode 100644 index 0000000000..7eb85a2ecf --- /dev/null +++ b/gr-analog/grc/analog_cpfsk_bc.xml @@ -0,0 +1,37 @@ +<?xml version="1.0"?> +<!-- +################################################### +##CPFSK +################################################### + --> +<block> + <name>CPFSK</name> + <key>analog_cpfsk_bc</key> + <import>from gnuradio import analog</import> + <make>analog.cpfsk_bc($k, $amplitude, $samples_per_symbol)</make> + <callback>set_amplitude($amplitude)</callback> + <param> + <name>K</name> + <key>k</key> + <type>real</type> + </param> + <param> + <name>Amplitude</name> + <key>amplitude</key> + <type>real</type> + </param> + <param> + <name>Samples/Symbol</name> + <key>samples_per_symbol</key> + <value>2</value> + <type>int</type> + </param> + <sink> + <name>in</name> + <type>byte</type> + </sink> + <source> + <name>out</name> + <type>complex</type> + </source> +</block> |