mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-15 21:01:45 -05:00
LimeSDR: apply settings: more data in debug message
This commit is contained in:
parent
844628bc48
commit
566450501b
@ -944,7 +944,14 @@ bool LimeSDROutput::applySettings(const LimeSDROutputSettings& settings, bool fo
|
|||||||
|
|
||||||
qDebug() << "LimeSDROutput::applySettings: center freq: " << m_settings.m_centerFrequency << " Hz"
|
qDebug() << "LimeSDROutput::applySettings: center freq: " << m_settings.m_centerFrequency << " Hz"
|
||||||
<< " device stream sample rate: " << m_settings.m_devSampleRate << "S/s"
|
<< " device stream sample rate: " << m_settings.m_devSampleRate << "S/s"
|
||||||
<< " sample rate with soft decimation: " << m_settings.m_devSampleRate/(1<<m_settings.m_log2SoftInterp) << "S/s";
|
<< " sample rate with soft decimation: " << m_settings.m_devSampleRate/(1<<m_settings.m_log2SoftInterp) << "S/s"
|
||||||
|
<< " m_gain: " << m_settings.m_gain
|
||||||
|
<< " m_lpfBW: " << m_settings.m_lpfBW
|
||||||
|
<< " m_lpfFIRBW: " << m_settings.m_lpfFIRBW
|
||||||
|
<< " m_lpfFIREnable: " << m_settings.m_lpfFIREnable
|
||||||
|
<< " m_ncoEnable: " << m_settings.m_ncoEnable
|
||||||
|
<< " m_ncoFrequency: " << m_settings.m_ncoFrequency
|
||||||
|
<< " m_antennaPath: " << m_settings.m_antennaPath;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1083,7 +1083,14 @@ bool LimeSDRInput::applySettings(const LimeSDRInputSettings& settings, bool forc
|
|||||||
|
|
||||||
qDebug() << "LimeSDRInput::applySettings: center freq: " << m_settings.m_centerFrequency << " Hz"
|
qDebug() << "LimeSDRInput::applySettings: center freq: " << m_settings.m_centerFrequency << " Hz"
|
||||||
<< " device stream sample rate: " << m_settings.m_devSampleRate << "S/s"
|
<< " device stream sample rate: " << m_settings.m_devSampleRate << "S/s"
|
||||||
<< " sample rate with soft decimation: " << m_settings.m_devSampleRate/(1<<m_settings.m_log2SoftDecim) << "S/s";
|
<< " sample rate with soft decimation: " << m_settings.m_devSampleRate/(1<<m_settings.m_log2SoftDecim) << "S/s"
|
||||||
|
<< " m_gain: " << m_settings.m_gain
|
||||||
|
<< " m_lpfBW: " << m_settings.m_lpfBW
|
||||||
|
<< " m_lpfFIRBW: " << m_settings.m_lpfFIRBW
|
||||||
|
<< " m_lpfFIREnable: " << m_settings.m_lpfFIREnable
|
||||||
|
<< " m_ncoEnable: " << m_settings.m_ncoEnable
|
||||||
|
<< " m_ncoFrequency: " << m_settings.m_ncoFrequency
|
||||||
|
<< " m_antennaPath: " << m_settings.m_antennaPath;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user