diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-05-23 15:37:59 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-05-23 15:41:44 -0400 |
commit | 5bdd638f56775e50cce23ffe3bef241de53dcad1 (patch) | |
tree | 828e51ccef639e691abccb58116777949de28ad8 /gr-analog/include/gnuradio/analog/agc_cc.h | |
parent | 58fbb1695f17bb44ecc0ef268e2640a1f7f71906 (diff) |
analog: updated AGC loops to have same interface; can init gain, max_gain defaults to 2e16, reset using set_max_gain.
Diffstat (limited to 'gr-analog/include/gnuradio/analog/agc_cc.h')
-rw-r--r-- | gr-analog/include/gnuradio/analog/agc_cc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-analog/include/gnuradio/analog/agc_cc.h b/gr-analog/include/gnuradio/analog/agc_cc.h index 8319995960..2c7e91b9d6 100644 --- a/gr-analog/include/gnuradio/analog/agc_cc.h +++ b/gr-analog/include/gnuradio/analog/agc_cc.h @@ -52,7 +52,7 @@ namespace gr { * \param max_gain maximum gain value (0 for unlimited). */ static sptr make(float rate = 1e-4, float reference = 1.0, - float gain = 1.0, float max_gain = 0.0); + float gain = 1.0); virtual float rate() const = 0; virtual float reference() const = 0; |