1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 07:24:44 -04:00

MIMO: implemented SampleMOFifo in device sample MIMO

This commit is contained in:
f4exb
2019-10-17 00:58:36 +02:00
parent 8691fef573
commit 626e07dd85
5 changed files with 22 additions and 39 deletions
-9
View File
@@ -42,12 +42,3 @@ void DeviceSampleMIMO::handleInputMessages()
}
}
}
SampleSourceFifo* DeviceSampleMIMO::getSampleSourceFifo(unsigned int index)
{
if (index >= m_sampleSourceFifos.size()) {
return nullptr;
} else {
return &m_sampleSourceFifos[index];
}
}