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

SoapySDR support: input: center frequency and sample rate handling

This commit is contained in:
f4exb
2018-11-02 02:33:04 +01:00
parent 5acac7b9fa
commit ea98f2e1c9
12 changed files with 527 additions and 14 deletions
@@ -57,6 +57,10 @@ SoapySDRInputThread::~SoapySDRInputThread()
void SoapySDRInputThread::startWork()
{
if (m_running) {
return;
}
m_startWaitMutex.lock();
start();
@@ -69,6 +73,10 @@ void SoapySDRInputThread::startWork()
void SoapySDRInputThread::stopWork()
{
if (!m_running) {
return;
}
m_running = false;
wait();
}