kopia lustrzana https://github.com/f4exb/sdrangel
XTRX fixes (2)
rodzic
5109253d8b
commit
3826b1faeb
|
@ -53,8 +53,7 @@ bool DeviceXTRX::open(const char* deviceStr)
|
||||||
int res;
|
int res;
|
||||||
qDebug("DeviceXTRX::open: serial: %s", (const char *) deviceStr);
|
qDebug("DeviceXTRX::open: serial: %s", (const char *) deviceStr);
|
||||||
|
|
||||||
//res = xtrx_open(deviceStr, XTRX_O_RESET | 4, &m_dev);
|
res = xtrx_open(deviceStr, XTRX_O_RESET | 4, &m_dev);
|
||||||
res = xtrx_open(deviceStr, 4, &m_dev);
|
|
||||||
|
|
||||||
if (res)
|
if (res)
|
||||||
{
|
{
|
||||||
|
|
|
@ -332,14 +332,14 @@ bool XTRXOutput::start()
|
||||||
xtrxOutputThread->setFifo(requestedChannel, &m_sampleSourceFifo);
|
xtrxOutputThread->setFifo(requestedChannel, &m_sampleSourceFifo);
|
||||||
xtrxOutputThread->setLog2Interpolation(requestedChannel, m_settings.m_log2SoftInterp);
|
xtrxOutputThread->setLog2Interpolation(requestedChannel, m_settings.m_log2SoftInterp);
|
||||||
|
|
||||||
|
applySettings(m_settings, true);
|
||||||
|
|
||||||
if (needsStart)
|
if (needsStart)
|
||||||
{
|
{
|
||||||
qDebug("XTRXOutput::start: (re)start thread");
|
qDebug("XTRXOutput::start: (re)start thread");
|
||||||
xtrxOutputThread->startWork();
|
xtrxOutputThread->startWork();
|
||||||
}
|
}
|
||||||
|
|
||||||
applySettings(m_settings, true);
|
|
||||||
|
|
||||||
qDebug("XTRXOutput::start: started");
|
qDebug("XTRXOutput::start: started");
|
||||||
m_running = true;
|
m_running = true;
|
||||||
|
|
||||||
|
@ -411,8 +411,8 @@ void XTRXOutput::stop()
|
||||||
((DeviceXTRXShared*) (*it)->getBuddySharedPtr())->m_thread = 0;
|
((DeviceXTRXShared*) (*it)->getBuddySharedPtr())->m_thread = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
xtrxOutputThread->startWork();
|
|
||||||
applySettings(m_settings, true);
|
applySettings(m_settings, true);
|
||||||
|
xtrxOutputThread->startWork();
|
||||||
}
|
}
|
||||||
|
|
||||||
m_running = false;
|
m_running = false;
|
||||||
|
|
Ładowanie…
Reference in New Issue