Skip to content
Snippets Groups Projects
Commit 70c3aee5 authored by marco-buttu's avatar marco-buttu
Browse files

Removed isRemoteOn() check at startup

parent 4a7bf623
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
......@@ -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;
}
......
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment