diff options
author | Tom Rondeau | 2012-10-22 21:35:04 -0400 |
---|---|---|
committer | Tom Rondeau | 2012-10-22 21:35:04 -0400 |
commit | 0723682d4f99a8dbe379a9aed0558650a977663e (patch) | |
tree | 7f30d2a1a87fdfe2d5b8667d91fb7ece7cbfdf62 /gr-analog/grc/analog_agc_xx.xml | |
parent | 502eeffa9f5ebeec092be1954efeab4992ef9796 (diff) | |
download | gnuradio-0723682d4f99a8dbe379a9aed0558650a977663e.tar.gz gnuradio-0723682d4f99a8dbe379a9aed0558650a977663e.tar.bz2 gnuradio-0723682d4f99a8dbe379a9aed0558650a977663e.zip |
analog: adding GRC blocks for:
- AGC
- AGC2
- Feedforward AGC
- CPFSK
- CTCSS squelch
- DPLL
Diffstat (limited to 'gr-analog/grc/analog_agc_xx.xml')
-rw-r--r-- | gr-analog/grc/analog_agc_xx.xml | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/gr-analog/grc/analog_agc_xx.xml b/gr-analog/grc/analog_agc_xx.xml new file mode 100644 index 000000000..46797bff9 --- /dev/null +++ b/gr-analog/grc/analog_agc_xx.xml @@ -0,0 +1,63 @@ +<?xml version="1.0"?> +<!-- +################################################### +##AGC +################################################### + --> +<block> + <name>AGC</name> + <key>analog_agc_xx</key> + <import>from gnuradio import analog</import> + <make>analog.agc_$(type.fcn)($rate, $reference, $gain, $max_gain)</make> + <callback>set_rate($rate)</callback> + <callback>set_reference($reference)</callback> + <callback>set_gain($gain)</callback> + <callback>set_max_gain($max_gain)</callback> + <param> + <name>Type</name> + <key>type</key> + <type>enum</type> + <option> + <name>Complex</name> + <key>complex</key> + <opt>fcn:cc</opt> + </option> + <option> + <name>Float</name> + <key>float</key> + <opt>fcn:ff</opt> + </option> + </param> + <param> + <name>Rate</name> + <key>rate</key> + <value>1e-4</value> + <type>real</type> + </param> + <param> + <name>Reference</name> + <key>reference</key> + <value>1.0</value> + <type>real</type> + </param> + <param> + <name>Gain</name> + <key>gain</key> + <value>1.0</value> + <type>real</type> + </param> + <param> + <name>Max Gain</name> + <key>max_gain</key> + <value>0.0</value> + <type>real</type> + </param> + <sink> + <name>in</name> + <type>$type</type> + </sink> + <source> + <name>out</name> + <type>$type</type> + </source> +</block> |