1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

SDRdaemon plugin: corrected main spectrum frequency display

This commit is contained in:
f4exb
2016-02-18 00:33:04 +01:00
parent f04b6c4dc1
commit 0b0d57724c
2 changed files with 9 additions and 3 deletions
@@ -142,11 +142,11 @@ void SDRdaemonUDPHandler::processData()
if (change)
{
DSPSignalNotification *notif = new DSPSignalNotification(m_samplerate, m_centerFrequency);
DSPSignalNotification *notif = new DSPSignalNotification(m_samplerate, m_centerFrequency * 1000); // Frequency in Hz for the DSP engine
DSPEngine::instance()->getInputMessageQueue()->push(notif);
SDRdaemonInput::MsgReportSDRdaemonStreamData *report = SDRdaemonInput::MsgReportSDRdaemonStreamData::create(
m_samplerate,
m_centerFrequency,
m_centerFrequency, // Frequency in kHz for the GUI
m_tv_sec,
m_tv_usec);
m_outputMessageQueueToGUI->push(report);