mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-10 05:29:06 -04:00
LimeSDR: update debug message
This commit is contained in:
parent
bd4e74c2bd
commit
5f0693932c
plugins
swagger/sdrangel/examples
@ -1089,14 +1089,14 @@ bool LimeSDROutput::applySettings(const LimeSDROutputSettings& settings, bool fo
|
||||
<< " m_log2HardInterp: " << m_settings.m_log2HardInterp
|
||||
<< " m_log2SoftInterp: " << m_settings.m_log2SoftInterp
|
||||
<< " m_gain: " << m_settings.m_gain
|
||||
<< " m_lpfBW: " << m_settings.m_lpfBW
|
||||
<< " m_lpfFIRBW: " << m_settings.m_lpfFIRBW
|
||||
<< " m_lpfBW: " << loc.toString(static_cast<int>(m_settings.m_lpfBW))
|
||||
<< " m_lpfFIRBW: " << loc.toString(static_cast<int>(m_settings.m_lpfFIRBW))
|
||||
<< " m_lpfFIREnable: " << m_settings.m_lpfFIREnable
|
||||
<< " m_ncoEnable: " << m_settings.m_ncoEnable
|
||||
<< " m_ncoFrequency: " << m_settings.m_ncoFrequency
|
||||
<< " m_ncoFrequency: " << loc.toString(m_settings.m_ncoFrequency)
|
||||
<< " m_antennaPath: " << m_settings.m_antennaPath
|
||||
<< " m_extClock: " << m_settings.m_extClock
|
||||
<< " m_extClockFreq: " << m_settings.m_extClockFreq
|
||||
<< " m_extClockFreq: " << loc.toString(m_settings.m_extClockFreq)
|
||||
<< " force: " << force
|
||||
<< " forceNCOFrequency: " << forceNCOFrequency
|
||||
<< " doCalibration: " << doCalibration
|
||||
|
@ -1242,14 +1242,14 @@ bool LimeSDRInput::applySettings(const LimeSDRInputSettings& settings, bool forc
|
||||
<< " m_log2HardDecim: " << m_settings.m_log2HardDecim
|
||||
<< " m_log2SoftDecim: " << m_settings.m_log2SoftDecim
|
||||
<< " m_gain: " << m_settings.m_gain
|
||||
<< " m_lpfBW: " << m_settings.m_lpfBW
|
||||
<< " m_lpfFIRBW: " << m_settings.m_lpfFIRBW
|
||||
<< " m_lpfBW: " << loc.toString(static_cast<int>(m_settings.m_lpfBW))
|
||||
<< " m_lpfFIRBW: " << loc.toString(static_cast<int>(m_settings.m_lpfFIRBW))
|
||||
<< " m_lpfFIREnable: " << m_settings.m_lpfFIREnable
|
||||
<< " m_ncoEnable: " << m_settings.m_ncoEnable
|
||||
<< " m_ncoFrequency: " << m_settings.m_ncoFrequency
|
||||
<< " m_ncoFrequency: " << loc.toString(m_settings.m_ncoFrequency)
|
||||
<< " m_antennaPath: " << m_settings.m_antennaPath
|
||||
<< " m_extClock: " << m_settings.m_extClock
|
||||
<< " m_extClockFreq: " << m_settings.m_extClockFreq
|
||||
<< " m_extClockFreq: " << loc.toString(m_settings.m_extClockFreq)
|
||||
<< " force: " << force
|
||||
<< " forceNCOFrequency: " << forceNCOFrequency
|
||||
<< " doCalibration: " << doCalibration
|
||||
|
@ -21,7 +21,7 @@ commands = [
|
||||
["/deviceset/2/device", "PUT", None, {"hwType": "SDRplay1"}, "setup SDRplay on Rx 2"],
|
||||
["/preset", "PATCH", None, {"deviceSetIndex": 2, "preset": {"groupName": "40m", "centerFrequency": 7130000, "type": "R", "name": "SSB low"}}, "load preset on Rx 2"],
|
||||
["/dvserial", "PATCH", {"dvserial": 1}, None, "set DV serial processing for AMBE frames decoding"],
|
||||
["/preset", "PATCH", None, {"deviceSetIndex": 0, "preset": {"groupName": "OM144", "centerFrequency": 145640000, "type": "R", "name": "Repeaters extended"}}, "load preset on Rx 0 twice"],
|
||||
# ["/preset", "PATCH", None, {"deviceSetIndex": 0, "preset": {"groupName": "OM144", "centerFrequency": 145640000, "type": "R", "name": "Repeaters extended"}}, "load preset on Rx 0 twice"],
|
||||
["/deviceset/0/device/run", "POST", None, None, "Start device on deviceset R0"],
|
||||
["/deviceset/1/device/run", "POST", None, None, "Start device on deviceset R1"],
|
||||
["/deviceset/2/device/run", "POST", None, None, "Start device on deviceset R2"],
|
||||
|
Loading…
Reference in New Issue
Block a user