Device MIMO engine: do not call handleSynchronousMessages directly

This commit is contained in:
f4exb 2019-11-01 06:32:18 +01:00
parent 7712013b9b
commit a2a3811d3b
1 changed files with 2 additions and 4 deletions

View File

@ -129,15 +129,13 @@ void DSPDeviceMIMOEngine::stopProcess(int subsystemIndex)
if (subsystemIndex == 0) // Rx side
{
DSPAcquisitionStop cmd;
m_syncMessenger.storeMessage(cmd);
m_syncMessenger.sendWait(cmd);
}
else if (subsystemIndex == 1) // Tx side
{
DSPGenerationStop cmd;
m_syncMessenger.storeMessage(cmd);
m_syncMessenger.sendWait(cmd);
}
handleSynchronousMessages();
}
void DSPDeviceMIMOEngine::setMIMO(DeviceSampleMIMO* mimo)