SDRdaemon plugin: fixed start not actually starting

pull/6/head
f4exb 2016-02-23 22:24:25 +01:00
rodzic 591ffd2f0e
commit 09e724bbdb
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -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()