summaryrefslogtreecommitdiff
path: root/gr-analog/lib/agc2_ff_impl.cc
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-05-24 17:28:05 -0400
committerTom Rondeau <trondeau@vt.edu>2013-05-24 17:28:05 -0400
commit76cf21628d3615cfcf01272e6303d577fd1e15d7 (patch)
tree9a843e6df8f00e9f79bcc5675deacb85cdab00f0 /gr-analog/lib/agc2_ff_impl.cc
parent6b1e513f71dc70b435d2bff920e06d20c569f189 (diff)
analog: (derp) tried to be clever about 2^16 in both Python and C++... failed on both.
Diffstat (limited to 'gr-analog/lib/agc2_ff_impl.cc')
-rw-r--r--gr-analog/lib/agc2_ff_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-analog/lib/agc2_ff_impl.cc b/gr-analog/lib/agc2_ff_impl.cc
index 02e27ea139..a6dc1d4c6c 100644
--- a/gr-analog/lib/agc2_ff_impl.cc
+++ b/gr-analog/lib/agc2_ff_impl.cc
@@ -49,7 +49,7 @@ namespace gr {
io_signature::make(1, 1, sizeof(float)),
io_signature::make(1, 1, sizeof(float))),
kernel::agc2_ff(attack_rate, decay_rate,
- reference, gain, 2e16)
+ reference, gain, 65536)
{
}