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

Fixed missing display settings of transverted data where missing

This commit is contained in:
f4exb
2019-01-16 21:28:35 +01:00
parent 0ac871cb5c
commit 83883efcb5
6 changed files with 18 additions and 4 deletions
+3 -3
View File
@@ -347,14 +347,14 @@ bool XTRXInput::start()
xtrxInputThread->setFifo(requestedChannel, &m_sampleFifo);
xtrxInputThread->setLog2Decimation(requestedChannel, m_settings.m_log2SoftDecim);
applySettings(m_settings, true);
if (needsStart)
{
qDebug("XTRXInput::start: (re)start thread");
xtrxInputThread->startWork();
}
applySettings(m_settings, true);
qDebug("XTRXInput::start: started");
m_running = true;
@@ -426,8 +426,8 @@ void XTRXInput::stop()
((DeviceXTRXShared*) (*it)->getBuddySharedPtr())->m_thread = 0;
}
xtrxInputThread->startWork();
applySettings(m_settings, true);
xtrxInputThread->startWork();
}
m_running = false;