mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-15 12:51:49 -05:00
Commented too frequent debug messages
This commit is contained in:
parent
18f833c650
commit
1a8028a4eb
@ -58,7 +58,7 @@ void RemoteSourceBaseband::reset()
|
|||||||
|
|
||||||
void RemoteSourceBaseband::pull(const SampleVector::iterator& begin, unsigned int nbSamples)
|
void RemoteSourceBaseband::pull(const SampleVector::iterator& begin, unsigned int nbSamples)
|
||||||
{
|
{
|
||||||
qDebug("RemoteSourceBaseband::pull: %u", nbSamples);
|
//qDebug("RemoteSourceBaseband::pull: %u", nbSamples);
|
||||||
unsigned int part1Begin, part1End, part2Begin, part2End;
|
unsigned int part1Begin, part1End, part2Begin, part2End;
|
||||||
m_sampleFifo.read(nbSamples, part1Begin, part1End, part2Begin, part2End);
|
m_sampleFifo.read(nbSamples, part1Begin, part1End, part2Begin, part2End);
|
||||||
SampleVector& data = m_sampleFifo.getData();
|
SampleVector& data = m_sampleFifo.getData();
|
||||||
|
@ -406,10 +406,10 @@ void TestSourceThread::tick()
|
|||||||
if (m_histoCounter < 49) {
|
if (m_histoCounter < 49) {
|
||||||
m_histoCounter++;
|
m_histoCounter++;
|
||||||
} else {
|
} else {
|
||||||
qDebug("TestSourceThread::tick: -----------");
|
// qDebug("TestSourceThread::tick: -----------");
|
||||||
for (std::map<int,int>::iterator it = m_timerHistogram.begin(); it != m_timerHistogram.end(); ++it) {
|
// for (std::map<int,int>::iterator it = m_timerHistogram.begin(); it != m_timerHistogram.end(); ++it) {
|
||||||
qDebug("TestSourceThread::tick: %d: %d", it->first, it->second);
|
// qDebug("TestSourceThread::tick: %d: %d", it->first, it->second);
|
||||||
}
|
// }
|
||||||
m_histoCounter = 0;
|
m_histoCounter = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user