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

MIMO: test MI: select stream to be displayed on main sperctrum

This commit is contained in:
f4exb
2019-05-28 12:09:08 +02:00
parent bb8366bfde
commit a0f16a1db0
5 changed files with 159 additions and 118 deletions
+1 -1
View File
@@ -434,7 +434,7 @@ bool TestMI::applySettings(const TestMISettings& settings, bool force)
DSPSignalNotification *notif = new DSPSignalNotification(sampleRate, settings.m_streams[istream].m_centerFrequency);
m_fileSinks[istream]->handleMessage(*notif); // forward to file sink
DSPDeviceMIMOEngine::SignalNotification *engineNotif = new DSPDeviceMIMOEngine::SignalNotification(
sampleRate, settings.m_streams[istream].m_centerFrequency, true, 0);
sampleRate, settings.m_streams[istream].m_centerFrequency, true, istream);
m_deviceAPI->getDeviceEngineInputMessageQueue()->push(engineNotif);
}