Skip to content
Snippets Groups Projects
Commit 9666ada3 authored by Arafat Nourredine's avatar Arafat Nourredine
Browse files

Add a status "Waiting for request..." when state is STANDBY

parent ecac6723
No related branches found
No related tags found
No related merge requests found
......@@ -235,7 +235,11 @@ void Controller::compute_state_status()
}
else
{
set_state(m_acquisition->get_state());
Tango::DevState state = m_acquisition->get_state();
set_state(state);
if(state == Tango::STANDBY)
set_status("Waiting for request ...");
else
set_status(m_acquisition->get_status());
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment