mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-10 10:33:29 -05:00
PLutoSDR MIMO: GUI fixes
This commit is contained in:
parent
94d037aa16
commit
e58758e503
@ -875,11 +875,11 @@ bool PlutoSDRMIMO::applySettings(const PlutoSDRMIMOSettings& settings, bool forc
|
|||||||
|
|
||||||
if (forwardChangeTxDSP)
|
if (forwardChangeTxDSP)
|
||||||
{
|
{
|
||||||
qDebug("PlutoSDROutput::applySettings: forward change to self");
|
int sampleRate = settings.m_devSampleRate/(1<<settings.m_log2Interp);
|
||||||
|
DSPMIMOSignalNotification *notif0 = new DSPMIMOSignalNotification(sampleRate, settings.m_txCenterFrequency, false, 0);
|
||||||
int sampleRate = m_settings.m_devSampleRate/(1<<m_settings.m_log2Interp);
|
m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif0);
|
||||||
DSPSignalNotification *notif = new DSPSignalNotification(sampleRate, m_settings.m_txCenterFrequency);
|
DSPMIMOSignalNotification *notif1 = new DSPMIMOSignalNotification(sampleRate, settings.m_txCenterFrequency, false, 1);
|
||||||
m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif);
|
m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@ -169,6 +169,7 @@ void PlutoSDRMIMOGUI::displaySettings()
|
|||||||
ui->lpFIREnable->setChecked(m_settings.m_lpfRxFIREnable);
|
ui->lpFIREnable->setChecked(m_settings.m_lpfRxFIREnable);
|
||||||
ui->lpFIR->setValue(m_settings.m_lpfRxFIRBW / 1000);
|
ui->lpFIR->setValue(m_settings.m_lpfRxFIRBW / 1000);
|
||||||
ui->lpFIRDecimation->setCurrentIndex(m_settings.m_lpfRxFIRlog2Decim);
|
ui->lpFIRDecimation->setCurrentIndex(m_settings.m_lpfRxFIRlog2Decim);
|
||||||
|
updateGainCombo();
|
||||||
ui->lpFIRGain->setCurrentIndex((m_settings.m_lpfRxFIRGain + 12)/6);
|
ui->lpFIRGain->setCurrentIndex((m_settings.m_lpfRxFIRGain + 12)/6);
|
||||||
ui->lpFIRDecimation->setEnabled(m_settings.m_lpfRxFIREnable);
|
ui->lpFIRDecimation->setEnabled(m_settings.m_lpfRxFIREnable);
|
||||||
ui->lpFIRGain->setEnabled(m_settings.m_lpfRxFIREnable);
|
ui->lpFIRGain->setEnabled(m_settings.m_lpfRxFIREnable);
|
||||||
@ -211,6 +212,7 @@ void PlutoSDRMIMOGUI::displaySettings()
|
|||||||
ui->lpFIREnable->setChecked(m_settings.m_lpfTxFIREnable);
|
ui->lpFIREnable->setChecked(m_settings.m_lpfTxFIREnable);
|
||||||
ui->lpFIR->setValue(m_settings.m_lpfTxFIRBW / 1000);
|
ui->lpFIR->setValue(m_settings.m_lpfTxFIRBW / 1000);
|
||||||
ui->lpFIRDecimation->setCurrentIndex(m_settings.m_lpfTxFIRlog2Interp);
|
ui->lpFIRDecimation->setCurrentIndex(m_settings.m_lpfTxFIRlog2Interp);
|
||||||
|
updateGainCombo();
|
||||||
ui->lpFIRGain->setCurrentIndex((m_settings.m_lpfTxFIRGain + 6)/6);
|
ui->lpFIRGain->setCurrentIndex((m_settings.m_lpfTxFIRGain + 6)/6);
|
||||||
ui->lpFIRDecimation->setEnabled(m_settings.m_lpfTxFIREnable);
|
ui->lpFIRDecimation->setEnabled(m_settings.m_lpfTxFIREnable);
|
||||||
ui->lpFIRGain->setEnabled(m_settings.m_lpfTxFIREnable);
|
ui->lpFIRGain->setEnabled(m_settings.m_lpfTxFIREnable);
|
||||||
@ -535,6 +537,20 @@ void PlutoSDRMIMOGUI::updateStatus()
|
|||||||
m_statusCounter++;
|
m_statusCounter++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void PlutoSDRMIMOGUI::updateGainCombo()
|
||||||
|
{
|
||||||
|
ui->lpFIRGain->blockSignals(true);
|
||||||
|
ui->lpFIRGain->clear();
|
||||||
|
|
||||||
|
if (m_rxElseTx) {
|
||||||
|
ui->lpFIRGain->addItems(QStringList{"-12", "-6", "0", "+6"});
|
||||||
|
} else {
|
||||||
|
ui->lpFIRGain->addItems(QStringList{"-6", "0"});
|
||||||
|
}
|
||||||
|
|
||||||
|
ui->lpFIRGain->blockSignals(false);
|
||||||
|
}
|
||||||
|
|
||||||
void PlutoSDRMIMOGUI::on_streamSide_currentIndexChanged(int index)
|
void PlutoSDRMIMOGUI::on_streamSide_currentIndexChanged(int index)
|
||||||
{
|
{
|
||||||
m_rxElseTx = index == 0;
|
m_rxElseTx = index == 0;
|
||||||
|
@ -86,6 +86,7 @@ private slots:
|
|||||||
void handleInputMessages();
|
void handleInputMessages();
|
||||||
void updateHardware();
|
void updateHardware();
|
||||||
void updateStatus();
|
void updateStatus();
|
||||||
|
void updateGainCombo();
|
||||||
void on_streamSide_currentIndexChanged(int index);
|
void on_streamSide_currentIndexChanged(int index);
|
||||||
void on_streamIndex_currentIndexChanged(int index);
|
void on_streamIndex_currentIndexChanged(int index);
|
||||||
void on_spectrumSide_currentIndexChanged(int index);
|
void on_spectrumSide_currentIndexChanged(int index);
|
||||||
|
Loading…
Reference in New Issue
Block a user