mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-04 15:04:38 -04:00
Make the DSP source engine forward messages to own source input GUI message queue. Implementation in all sources
This commit is contained in:
@@ -179,7 +179,10 @@ void SDRdaemonSourceUDPHandler::processData()
|
||||
m_centerFrequency * 1000, // Frequency in Hz for the GUI
|
||||
m_tv_sec,
|
||||
m_tv_usec);
|
||||
m_outputMessageQueueToGUI->push(report);
|
||||
|
||||
if (m_outputMessageQueueToGUI) {
|
||||
m_outputMessageQueueToGUI->push(report);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -258,6 +261,9 @@ void SDRdaemonSourceUDPHandler::tick()
|
||||
m_sdrDaemonBuffer.getAvgNbRecovery(),
|
||||
nbOriginalBlocks,
|
||||
nbFECblocks);
|
||||
m_outputMessageQueueToGUI->push(report);
|
||||
|
||||
if (m_outputMessageQueueToGUI) {
|
||||
m_outputMessageQueueToGUI->push(report);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user