diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2020-04-11 01:01:53 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-04-13 15:55:41 +0200 |
commit | 7a203ad0481aea3820ea60568402b94cff83ab1d (patch) | |
tree | 88b0f96f2d1dbfe93110576c1c609641adaeeb56 | |
parent | 9ebae8412f868ac42e29f97fa0d48e3504e14066 (diff) |
analog/dpll: remove unused printf debugging, include
-rw-r--r-- | gr-analog/lib/dpll_bb_impl.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gr-analog/lib/dpll_bb_impl.cc b/gr-analog/lib/dpll_bb_impl.cc index 7f4109794b..18bc054bc5 100644 --- a/gr-analog/lib/dpll_bb_impl.cc +++ b/gr-analog/lib/dpll_bb_impl.cc @@ -14,7 +14,6 @@ #include "dpll_bb_impl.h" #include <gnuradio/io_signature.h> -#include <cstdio> namespace gr { namespace analog { @@ -34,13 +33,6 @@ dpll_bb_impl::dpll_bb_impl(float period, float gain) d_pulse_frequency = 1.0 / period; d_gain = gain; d_decision_threshold = 1.0 - 0.5 * d_pulse_frequency; -#if 0 - fprintf(stderr,"frequency = %f period = %f gain = %f threshold = %f\n", - d_pulse_frequency, - period, - d_gain, - d_decision_threshold); -#endif } dpll_bb_impl::~dpll_bb_impl() {} |