diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-05-24 17:28:05 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-05-24 17:28:05 -0400 |
commit | 76cf21628d3615cfcf01272e6303d577fd1e15d7 (patch) | |
tree | 9a843e6df8f00e9f79bcc5675deacb85cdab00f0 /gr-analog/lib/agc3_cc_impl.cc | |
parent | 6b1e513f71dc70b435d2bff920e06d20c569f189 (diff) |
analog: (derp) tried to be clever about 2^16 in both Python and C++... failed on both.
Diffstat (limited to 'gr-analog/lib/agc3_cc_impl.cc')
-rw-r--r-- | gr-analog/lib/agc3_cc_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-analog/lib/agc3_cc_impl.cc b/gr-analog/lib/agc3_cc_impl.cc index 21c9f471ea..a6a85caf10 100644 --- a/gr-analog/lib/agc3_cc_impl.cc +++ b/gr-analog/lib/agc3_cc_impl.cc @@ -46,7 +46,7 @@ namespace gr { io_signature::make(1, 1, sizeof(gr_complex)), io_signature::make(1, 1, sizeof(gr_complex))), d_attack(attack_rate), d_decay(decay_rate), - d_reference(reference), d_gain(gain), d_max_gain(2e16), + d_reference(reference), d_gain(gain), d_max_gain(65536), d_reset(true) { const int alignment_multiple = |