1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 22:14:45 -04:00

MIMO: channel marker affinity with the stream being displayed on the main spectrum. Implemented in demod AM

This commit is contained in:
f4exb
2019-05-30 18:38:10 +02:00
parent d0c829f141
commit ecb4a08718
16 changed files with 66 additions and 8 deletions
+2
View File
@@ -153,6 +153,7 @@ void TestMIGui::on_streamIndex_currentIndexChanged(int index)
if (ui->streamLock->isChecked())
{
m_spectrumStreamIndex = index;
m_deviceUISet->m_spectrum->setDisplayedStream(true, index);
m_deviceUISet->m_deviceAPI->setSpectrumSinkInput(true, m_spectrumStreamIndex);
ui->spectrumSource->blockSignals(true);
ui->spectrumSource->setCurrentIndex(index);
@@ -168,6 +169,7 @@ void TestMIGui::on_streamIndex_currentIndexChanged(int index)
void TestMIGui::on_spectrumSource_currentIndexChanged(int index)
{
m_spectrumStreamIndex = index;
m_deviceUISet->m_spectrum->setDisplayedStream(true, index);
m_deviceUISet->m_deviceAPI->setSpectrumSinkInput(true, m_spectrumStreamIndex);
updateSampleRateAndFrequency();