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

Device engines: stop device before channels when going idle

This commit is contained in:
f4exb
2019-10-06 09:54:07 +02:00
parent 0bc4db5f89
commit d6382fbbaa
3 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -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;