mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-09-06 07:07:48 -04:00
LimeSDR input: more debug messages
This commit is contained in:
parent
6dd66cb23c
commit
5fb05cbfad
@ -178,15 +178,23 @@ bool LimeSDRInput::start()
|
|||||||
qCritical("LimeSDRInput::start: cannot setup the stream on Rx channel %lu", m_deviceShared.m_channel);
|
qCritical("LimeSDRInput::start: cannot setup the stream on Rx channel %lu", m_deviceShared.m_channel);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
qDebug("LimeSDRInput::start: stream set up on Rx channel %lu", m_deviceShared.m_channel);
|
||||||
|
}
|
||||||
|
|
||||||
// start / stop streaming is done in the thread.
|
// start / stop streaming is done in the thread.
|
||||||
|
|
||||||
if ((m_limeSDRInputThread = new LimeSDRInputThread(&m_streamId, &m_sampleFifo)) == 0)
|
if ((m_limeSDRInputThread = new LimeSDRInputThread(&m_streamId, &m_sampleFifo)) == 0)
|
||||||
{
|
{
|
||||||
qFatal("LimeSDRInput::start: out of memory");
|
qFatal("LimeSDRInput::start: cannot create thread");
|
||||||
stop();
|
stop();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
qDebug("LimeSDRInput::start: thread created");
|
||||||
|
}
|
||||||
|
|
||||||
m_limeSDRInputThread->setLog2Decimation(m_settings.m_log2SoftDecim);
|
m_limeSDRInputThread->setLog2Decimation(m_settings.m_log2SoftDecim);
|
||||||
m_limeSDRInputThread->setFcPos((int) m_settings.m_fcPos);
|
m_limeSDRInputThread->setFcPos((int) m_settings.m_fcPos);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user