1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

SDRdaemon plugin: fixed start not actually starting

This commit is contained in:
f4exb 2016-02-23 22:24:25 +01:00
parent 591ffd2f0e
commit 09e724bbdb

View File

@ -76,6 +76,10 @@ void SDRdaemonUDPHandler::start()
m_dataConnected = false;
}
}
// Need to notify the DSP engine to actually start
DSPSignalNotification *notif = new DSPSignalNotification(m_samplerate, m_centerFrequency * 1000); // Frequency in Hz for the DSP engine
DSPEngine::instance()->getInputMessageQueue()->push(notif);
}
void SDRdaemonUDPHandler::stop()