Skip to content

Commit

Permalink
remove debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
fventuri committed Dec 25, 2020
1 parent 1e8b734 commit e07fe25
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Settings.cpp
Expand Up @@ -356,7 +356,6 @@ std::vector<std::string> SoapySDRPlay::listAntennas(const int direction, const s

void SoapySDRPlay::setAntenna(const int direction, const size_t channel, const std::string &name)
{
SoapySDR_logf(SOAPY_SDR_INFO, "DEBUG - setAntenna(channel=%d, name=%s)", channel, name.c_str());
// Check direction
if ((direction != SOAPY_SDR_RX) || (device.hwVer == SDRPLAY_RSP1_ID) || (device.hwVer == SDRPLAY_RSP1A_ID)) {
return;
Expand Down Expand Up @@ -1427,7 +1426,6 @@ SoapySDR::ArgInfoList SoapySDRPlay::getSettingInfo(void) const
void SoapySDRPlay::writeSetting(const std::string &key, const std::string &value)
{
std::lock_guard <std::mutex> lock(_general_state_mutex);
SoapySDR_logf(SOAPY_SDR_INFO, "DEBUG - writeSetting(key=%s, value=%s)", key.c_str(), value.c_str());

#ifdef RF_GAIN_IN_MENU
if (key == "rfgain_sel")
Expand Down Expand Up @@ -1496,7 +1494,6 @@ SoapySDR_logf(SOAPY_SDR_INFO, "DEBUG - writeSetting(key=%s, value=%s)", key.c_st
}
else if (device.hwVer == SDRPLAY_RSPduo_ID)
{
SoapySDR_logf(SOAPY_SDR_INFO, "DEBUG - biasT - device.tuner=%d isRxChannelA=%d isRxChannelB=%d", device.tuner, chParams == deviceParams->rxChannelA, chParams == deviceParams->rxChannelB);
chParams->rspDuoTunerParams.biasTEnable = biasTen;
if (streamActive)
{
Expand Down

0 comments on commit e07fe25

Please sign in to comment.