Device engines: stop device before channels when going idle

pull/426/head
f4exb 2019-10-06 09:54:07 +02:00
rodzic 0bc4db5f89
commit d6382fbbaa
3 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -389,6 +389,8 @@ DSPDeviceMIMOEngine::State DSPDeviceMIMOEngine::gotoIdle()
// stop everything
m_deviceSampleMIMO->stop();
std::vector<BasebandSampleSinks>::const_iterator vbit = m_basebandSampleSinks.begin();
for (; vbit != m_basebandSampleSinks.end(); ++vbit)
@ -428,7 +430,6 @@ DSPDeviceMIMOEngine::State DSPDeviceMIMOEngine::gotoIdle()
(*it)->stop();
}
m_deviceSampleMIMO->stop();
m_deviceDescription.clear();
return StIdle;

Wyświetl plik

@ -232,6 +232,7 @@ DSPDeviceSinkEngine::State DSPDeviceSinkEngine::gotoIdle()
}
// stop everything
m_deviceSampleSink->stop();
for(BasebandSampleSources::const_iterator it = m_basebandSampleSources.begin(); it != m_basebandSampleSources.end(); it++)
{
@ -251,7 +252,6 @@ DSPDeviceSinkEngine::State DSPDeviceSinkEngine::gotoIdle()
m_spectrumSink->stop();
}
m_deviceSampleSink->stop();
m_deviceDescription.clear();
m_sampleRate = 0;

Wyświetl plik

@ -435,6 +435,7 @@ DSPDeviceSourceEngine::State DSPDeviceSourceEngine::gotoIdle()
}
// stop everything
m_deviceSampleSource->stop();
for(BasebandSampleSinks::const_iterator it = m_basebandSampleSinks.begin(); it != m_basebandSampleSinks.end(); it++)
{
@ -446,7 +447,6 @@ DSPDeviceSourceEngine::State DSPDeviceSourceEngine::gotoIdle()
(*it)->stop();
}
m_deviceSampleSource->stop();
m_deviceDescription.clear();
m_sampleRate = 0;