1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

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

View File

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