From 46ebdefff08a239cd8c39ac79e8f6372b58a29ab Mon Sep 17 00:00:00 2001 From: f4exb Date: Sat, 25 Feb 2017 11:32:18 +0100 Subject: [PATCH] NCO: standardized debug message --- sdrbase/dsp/ncof.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdrbase/dsp/ncof.cpp b/sdrbase/dsp/ncof.cpp index c63206c81..62cf72580 100644 --- a/sdrbase/dsp/ncof.cpp +++ b/sdrbase/dsp/ncof.cpp @@ -43,7 +43,7 @@ NCOF::NCOF() void NCOF::setFreq(Real freq, Real sampleRate) { m_phaseIncrement = (freq * TableSize) / sampleRate; - qDebug("NCO freq: %f phase inc %f", freq, m_phaseIncrement); + qDebug("NCOF::setFreq: freq: %f m_phaseIncrement: %f", freq, m_phaseIncrement); } float NCOF::next()