1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Device engines: unified some debug messages

This commit is contained in:
f4exb
2019-01-04 10:49:47 +01:00
parent a5c2de87a8
commit 680c584fe0
2 changed files with 13 additions and 9 deletions
+4 -4
View File
@@ -684,8 +684,6 @@ void DSPDeviceSourceEngine::handleSynchronousMessages()
void DSPDeviceSourceEngine::handleInputMessages()
{
qDebug() << "DSPDeviceSourceEngine::handleInputMessages";
Message* message;
while ((message = m_inputMessageQueue.pop()) != 0)
@@ -732,7 +730,9 @@ void DSPDeviceSourceEngine::handleInputMessages()
m_sampleRate = notif->getSampleRate();
m_centerFrequency = notif->getCenterFrequency();
qDebug() << "DSPDeviceSourceEngine::handleInputMessages: DSPSignalNotification(" << m_sampleRate << "," << m_centerFrequency << ")";
qDebug() << "DSPDeviceSourceEngine::handleInputMessages: DSPSignalNotification:"
<< " m_sampleRate: " << m_sampleRate
<< " m_centerFrequency: " << m_centerFrequency;
// forward source changes to channel sinks with immediate execution (no queuing)
@@ -755,7 +755,7 @@ void DSPDeviceSourceEngine::handleInputMessages()
if (guiMessageQueue) {
DSPSignalNotification* rep = new DSPSignalNotification(*notif); // make a copy for the source GUI
m_deviceSampleSource->getMessageQueueToGUI()->push(rep);
guiMessageQueue->push(rep);
}
//m_outputMessageQueue.push(rep);