Skip to content
Snippets Groups Projects
Commit 1c7635c2 authored by Alessandro Abrami's avatar Alessandro Abrami
Browse files

2021/10/07: BRANCH(withHistory) History in Expert

parent 48766f17
No related branches found
No related tags found
No related merge requests found
......@@ -580,6 +580,10 @@ void AxisG2Selector::init_device()
}
//=======================================
std::stringstream ss;
ss << __func__ << "(done)";
hist->push_end(ss.str());
if (init_device_ok) {
set_state(Tango::ON);
......
......@@ -184,7 +184,7 @@
<status abstract="false" inherited="false" concrete="true" concreteHere="true"/>
<properties description="" label="" unit="" standardUnit="" displayUnit="" format="" maxValue="" minValue="" maxAlarm="" minAlarm="" maxWarning="" minWarning="" deltaTime="" deltaValue=""/>
</attributes>
<attributes name="History" attType="Spectrum" rwType="READ" displayLevel="OPERATOR" polledPeriod="0" maxX="2000" maxY="" allocReadMember="true" isDynamic="false">
<attributes name="History" attType="Spectrum" rwType="READ" displayLevel="EXPERT" polledPeriod="0" maxX="2000" maxY="" allocReadMember="true" isDynamic="false">
<dataType xsi:type="pogoDsl:StringType"/>
<changeEvent fire="false" libCheckCriteria="false"/>
<archiveEvent fire="false" libCheckCriteria="false"/>
......
......@@ -794,7 +794,7 @@ void AxisG2SelectorClass::attribute_factory(vector<Tango::Attr *> &att_list)
history->set_default_properties(history_prop);
// Not Polled
history->set_disp_level(Tango::OPERATOR);
history->set_disp_level(Tango::EXPERT);
// Not Memorized
att_list.push_back(history);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment