From 70c3aee52ddb50188dd9a71872f40218a90af0f0 Mon Sep 17 00:00:00 2001 From: marco-buttu Date: Wed, 4 Mar 2020 11:56:13 +0000 Subject: [PATCH] Removed isRemoteOn() check at startup --- .../MFKBandBaseReceiver/src/MFKBandBaseCore.cpp | 16 ---------------- .../SRT7GHzReceiver/src/ComponentCore.cpp | 15 --------------- .../SRTLPBandReceiver/src/ComponentCore.cpp | 16 ---------------- 3 files changed, 47 deletions(-) diff --git a/Common/Servers/MFKBandBaseReceiver/src/MFKBandBaseCore.cpp b/Common/Servers/MFKBandBaseReceiver/src/MFKBandBaseCore.cpp index ec08e5b59..2601df632 100644 --- a/Common/Servers/MFKBandBaseReceiver/src/MFKBandBaseCore.cpp +++ b/Common/Servers/MFKBandBaseReceiver/src/MFKBandBaseCore.cpp @@ -71,22 +71,6 @@ CConfiguration const * const CComponentCore::execute() throw ( } m_localOscillatorValue=0.0; m_setupMode=""; - - if(m_control->isRemoteOn()) { - _IRA_LOGFILTER_LOG( - LM_INFO, - "CComponentCore::execute()", - "RECEIVER_REMOTELY_CONTROLLABLE" - ); - } - else { - _IRA_LOGFILTER_LOG( - LM_INFO, - "CComponentCore::execute()", - "RECEIVER_NOT_REMOTELY_CONTROLLABLE" - ); - } - return &m_configuration; } diff --git a/SRT/Servers/SRT7GHzReceiver/src/ComponentCore.cpp b/SRT/Servers/SRT7GHzReceiver/src/ComponentCore.cpp index 64937048a..8c42b4a06 100644 --- a/SRT/Servers/SRT7GHzReceiver/src/ComponentCore.cpp +++ b/SRT/Servers/SRT7GHzReceiver/src/ComponentCore.cpp @@ -65,21 +65,6 @@ CConfiguration const * const CComponentCore::execute() throw (ComponentErrors:: m_localOscillatorValue=m_configuration.getDefaultLO()[i]; } m_setupMode=""; - - if(m_control->isRemoteOn()) { - _IRA_LOGFILTER_LOG( - LM_INFO, - "CComponentCore::execute()", - "RECEIVER_REMOTELY_CONTROLLABLE" - ); - } - else { - _IRA_LOGFILTER_LOG( - LM_INFO, - "CComponentCore::execute()", - "RECEIVER_NOT_REMOTELY_CONTROLLABLE" - ); - } return &m_configuration; } diff --git a/SRT/Servers/SRTLPBandReceiver/src/ComponentCore.cpp b/SRT/Servers/SRTLPBandReceiver/src/ComponentCore.cpp index 8c99127e7..94c5b153c 100755 --- a/SRT/Servers/SRTLPBandReceiver/src/ComponentCore.cpp +++ b/SRT/Servers/SRTLPBandReceiver/src/ComponentCore.cpp @@ -70,22 +70,6 @@ CConfiguration const * const CComponentCore::execute() throw ( m_localOscillatorValue = m_configuration.getDefaultLO()[0]; m_actualMode=""; - - if(m_control->isRemoteOn()) { - _IRA_LOGFILTER_LOG( - LM_INFO, - "CComponentCore::execute()", - "RECEIVER_REMOTELY_CONTROLLABLE" - ); - } - else { - _IRA_LOGFILTER_LOG( - LM_INFO, - "CComponentCore::execute()", - "RECEIVER_NOT_REMOTELY_CONTROLLABLE" - ); - } - return &m_configuration; } -- GitLab