diff options
Diffstat (limited to 'gr-digital/lib/simple_correlator_impl.h')
-rw-r--r-- | gr-digital/lib/simple_correlator_impl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gr-digital/lib/simple_correlator_impl.h b/gr-digital/lib/simple_correlator_impl.h index 505a2e296d..59188363c8 100644 --- a/gr-digital/lib/simple_correlator_impl.h +++ b/gr-digital/lib/simple_correlator_impl.h @@ -13,6 +13,7 @@ #include <gnuradio/digital/simple_correlator.h> +// To enable tracing to the debug logger, un-comment the following line //#define DEBUG_SIMPLE_CORRELATOR namespace gr { @@ -41,10 +42,6 @@ private: float d_avg; float d_accum; -#ifdef DEBUG_SIMPLE_CORRELATOR - FILE* d_debug_fp; // binary log file -#endif - inline int slice(float x) { return x >= d_avg ? 1 : 0; } void update_avg(float x); |