Included and adjusted the Panel from Airbus (DEU Power)

This commit is contained in:
Jonny007-MKD 2014-07-11 11:34:18 +00:00
parent 84ab39d5b3
commit 723a6bacc7
12 changed files with 1059 additions and 556 deletions

File diff suppressed because it is too large Load diff

View file

@ -11,118 +11,109 @@ variables
on sysvar sysvar::Airbus::ESS_DC1
{
if (@this==1)
if (@this)
{
@sysvar::Airbus::DEU223RH06::B_DC1_E=@this;
@sysvar::Airbus::DEU226RH06::B_DC1_E=@this;
@sysvar::Airbus::DEU223RH06::B_DC1_E=@this;
@sysvar::Airbus::DEU226RH06::B_DC1_E=@this;
}
}
on sysvar sysvar::Airbus::ESS_DC2
{
if (@this==1)
if (@this)
{
@sysvar::Airbus::DEU223RH06::B_DC2_E=@this;
@sysvar::Airbus::DEU226RH06::B_DC2_E=@this;
@sysvar::Airbus::DEU223RH06::B_DC2_E=@this;
@sysvar::Airbus::DEU226RH06::B_DC2_E=@this;
}
}
on sysvar sysvar::Airbus::NORM_DC1
{
if (@this==1)
if (@this)
{
@sysvar::Airbus::DEU223RH06::B_DC1_N=@this;
@sysvar::Airbus::DEU226RH06::B_DC1_N=@this;
@sysvar::Airbus::DEU223RH06::B_DC1_N=@this;
@sysvar::Airbus::DEU226RH06::B_DC1_N=@this;
}
}
on sysvar sysvar::Airbus::NORM_DC2
{
if (@this==1)
if (@this)
{
@sysvar::Airbus::DEU223RH06::B_DC2_N=@this;
@sysvar::Airbus::DEU226RH06::B_DC2_N=@this;
@sysvar::Airbus::DEU223RH06::B_DC2_N=@this;
@sysvar::Airbus::DEU226RH06::B_DC2_N=@this;
};
}
on sysvar sysvar::Airbus::DEU223RH06::B_DC1_E
{
if (@this==1)
{
if (@this)
@sysvar::Airbus::DEU223RH06::B_DC2_E=0;
};
update();
}
on sysvar sysvar::Airbus::DEU223RH06::B_DC2_E
{
if (@this==1)
{
if (@this)
@sysvar::Airbus::DEU223RH06::B_DC1_E=0;
};
update();
}
on sysvar sysvar::Airbus::DEU223RH06::B_DC1_N
{
if (@this==1)
{
if (@this)
@sysvar::Airbus::DEU223RH06::B_DC2_N=0;
};
update();
}
on sysvar sysvar::Airbus::DEU223RH06::B_DC2_N
{
if (@this==1)
{
if (@this)
@sysvar::Airbus::DEU223RH06::B_DC1_N=0;
};
update();
}
on sysvar sysvar::Airbus::DEU226RH06::B_DC1_E
{
if (@this==1)
{
if (@this)
@sysvar::Airbus::DEU226RH06::B_DC2_E=0;
};
update();
}
on sysvar sysvar::Airbus::DEU226RH06::B_DC2_E
{
if (@this==1)
{
if (@this)
@sysvar::Airbus::DEU226RH06::B_DC1_E=0;
};
update();
}
on sysvar sysvar::Airbus::DEU226RH06::B_DC1_N
{
if (@this==1)
{
if (@this)
@sysvar::Airbus::DEU226RH06::B_DC2_N=0;
};
update();
}
on sysvar sysvar::Airbus::DEU226RH06::B_DC2_N
{
if (@this==1)
{
if (@this)
@sysvar::Airbus::DEU226RH06::B_DC1_N=0;
};
update();
update();
}
on sysvar sysvar::Airbus::TL_CUT_OFF
{
update();
update();
}
void update()
@ -135,12 +126,21 @@ void update()
@sysvar::Airbus::DEU226RH06::DC1_N = @sysvar::Airbus::DEU226RH06::B_DC1_N && @sysvar::Airbus::TL_CUT_OFF;
@sysvar::Airbus::DEU226RH06::DC2_E = @sysvar::Airbus::DEU226RH06::B_DC2_E && @sysvar::Airbus::TL_CUT_OFF;
@sysvar::Airbus::DEU226RH06::DC2_N = @sysvar::Airbus::DEU226RH06::B_DC2_N && @sysvar::Airbus::TL_CUT_OFF;
@sysvar::Airbus::DEU223RH06::E = @sysvar::Airbus::DEU223RH06::B_DC1_E || @sysvar::Airbus::DEU223RH06::B_DC2_E;
@sysvar::Airbus::DEU223RH06::N = @sysvar::Airbus::DEU223RH06::B_DC1_N || @sysvar::Airbus::DEU223RH06::B_DC2_N;
@sysvar::Airbus::DEU226RH06::E = @sysvar::Airbus::DEU226RH06::B_DC1_E || @sysvar::Airbus::DEU226RH06::B_DC2_E;
@sysvar::Airbus::DEU226RH06::N = @sysvar::Airbus::DEU226RH06::B_DC1_N || @sysvar::Airbus::DEU226RH06::B_DC2_N;
if (@sysvar::Airbus::TL_CUT_OFF == -1) // value could not be read
{
@sysvar::Airbus::DEU223RH06::E = -1;
@sysvar::Airbus::DEU223RH06::N = -1;
@sysvar::Airbus::DEU226RH06::E = -1;
@sysvar::Airbus::DEU226RH06::N = -1;
}
else
{
@sysvar::Airbus::DEU223RH06::E = (@sysvar::Airbus::DEU223RH06::B_DC1_E || @sysvar::Airbus::DEU223RH06::B_DC2_E);
@sysvar::Airbus::DEU223RH06::N = (@sysvar::Airbus::DEU223RH06::B_DC1_N || @sysvar::Airbus::DEU223RH06::B_DC2_N);
@sysvar::Airbus::DEU226RH06::E = (@sysvar::Airbus::DEU226RH06::B_DC1_E || @sysvar::Airbus::DEU226RH06::B_DC2_E);
@sysvar::Airbus::DEU226RH06::N = (@sysvar::Airbus::DEU226RH06::B_DC1_N || @sysvar::Airbus::DEU226RH06::B_DC2_N);
}
}

View file

@ -1,167 +1,179 @@
<?xml version="1.0"?>
<Panel Type="Vector.CANalyzer.Panels.PanelSerializer, Vector.CANalyzer.Panels.Serializer, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null">
<Object Type="Vector.CANalyzer.Panels.Runtime.Panel, Vector.CANalyzer.Panels.Common, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="Panel" Children="Controls" ControlName="DEU_Power">
<Object Type="Vector.CANalyzer.Panels.Design.SwitchControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="SwitchControl5" ControlName="Switch/Indicator 2">
<Panel Type="Vector.CANalyzer.Panels.PanelSerializer, Vector.CANalyzer.Panels.Serializer, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null">
<Object Type="Vector.CANalyzer.Panels.Runtime.Panel, Vector.CANalyzer.Panels.Common, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="Panel" Children="Controls" ControlName="DEU Power">
<Object Type="Vector.CANalyzer.Panels.Design.StaticTextControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="StaticTextControl1" Children="Controls" ControlName="Static Text">
<Property Name="Name">StaticTextControl1</Property>
<Property Name="Size">68, 13</Property>
<Property Name="Location">73, 3</Property>
<Property Name="BackColor">Transparent</Property>
<Property Name="Text">TL CUT OFF</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.SwitchControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="SwitchControl5" ControlName="Switch/Indicator 2">
<Property Name="Name">SwitchControl5</Property>
<Property Name="Size">59, 57</Property>
<Property Name="Location">3, 11</Property>
<Property Name="StateCnt">2</Property>
<Property Name="SwitchValues">1;2;0;1</Property>
<Property Name="Size">80, 80</Property>
<Property Name="Location">3, 3</Property>
<Property Name="StateCnt">3</Property>
<Property Name="SwitchValues">1;3;0;1;-1</Property>
<Property Name="ImageFile">leds.png</Property>
<Property Name="SymbolConfiguration">4;16;Airbus;;;TL_CUT_OFF;1;;;-1</Property>
<Property Name="TabIndex">7</Property>
<Property Name="ReadOnlyControl">True</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.GroupBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="GroupBoxControl2" Children="Controls" ControlName="Group Box">
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl5" Children="Controls" ControlName="Check Box">
<Object Type="Vector.CANalyzer.Panels.Design.GroupBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="GroupBoxControl2" Children="Controls" ControlName="Group Box">
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl5" Children="Controls" ControlName="Check Box">
<Property Name="Name">CheckBoxControl5</Property>
<Property Name="Size">74, 17</Property>
<Property Name="Location">6, 53</Property>
<Property Name="Text">B_DC2_N</Property>
<Property Name="Size">75, 17</Property>
<Property Name="Location">14, 53</Property>
<Property Name="Text">DC2 Norm</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU226RH06;;;B_DC2_N;1;;;-1</Property>
<Property Name="TabIndex">13</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl6" Children="Controls" ControlName="Check Box">
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl6" Children="Controls" ControlName="Check Box">
<Property Name="Name">CheckBoxControl6</Property>
<Property Name="Size">73, 17</Property>
<Property Name="Location">91, 30</Property>
<Property Name="Text">B_DC1_E</Property>
<Property Name="Size">67, 17</Property>
<Property Name="Location">99, 30</Property>
<Property Name="Text">DC1 Ess</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU226RH06;;;B_DC1_E;1;;;-1</Property>
<Property Name="TabIndex">12</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl7" Children="Controls" ControlName="Check Box">
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl7" Children="Controls" ControlName="Check Box">
<Property Name="Name">CheckBoxControl7</Property>
<Property Name="Size">73, 17</Property>
<Property Name="Location">91, 53</Property>
<Property Name="Text">B_DC2_E</Property>
<Property Name="Size">67, 17</Property>
<Property Name="Location">99, 53</Property>
<Property Name="Text">DC2 Ess</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU226RH06;;;B_DC2_E;1;;;-1</Property>
<Property Name="TabIndex">11</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl8" Children="Controls" ControlName="Check Box">
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl8" Children="Controls" ControlName="Check Box">
<Property Name="Name">CheckBoxControl8</Property>
<Property Name="Size">74, 17</Property>
<Property Name="Location">6, 30</Property>
<Property Name="Text">B_DC1_N</Property>
<Property Name="Size">75, 17</Property>
<Property Name="Location">14, 30</Property>
<Property Name="Text">DC1 Norm</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU226RH06;;;B_DC1_N;1;;;-1</Property>
<Property Name="TabIndex">10</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.SwitchControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="SwitchControl3" ControlName="Switch/Indicator">
<Object Type="Vector.CANalyzer.Panels.Design.SwitchControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="SwitchControl3" ControlName="Switch/Indicator">
<Property Name="Name">SwitchControl3</Property>
<Property Name="Size">54, 62</Property>
<Property Name="Location">101, 174</Property>
<Property Name="StateCnt">2</Property>
<Property Name="SwitchValues">1;2;0;1</Property>
<Property Name="Size">60, 60</Property>
<Property Name="Location">107, 88</Property>
<Property Name="StateCnt">3</Property>
<Property Name="SwitchValues">1;3;0;1;-1</Property>
<Property Name="ImageFile">leds.png</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU226RH06;;;E;1;;;-1</Property>
<Property Name="TabIndex">5</Property>
<Property Name="ReadOnlyControl">True</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.SwitchControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="SwitchControl4" ControlName="Switch/Indicator">
<Object Type="Vector.CANalyzer.Panels.Design.SwitchControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="SwitchControl4" ControlName="Switch/Indicator">
<Property Name="Name">SwitchControl4</Property>
<Property Name="Size">54, 62</Property>
<Property Name="Location">19, 174</Property>
<Property Name="StateCnt">2</Property>
<Property Name="SwitchValues">1;2;0;1</Property>
<Property Name="Size">60, 60</Property>
<Property Name="Location">19, 88</Property>
<Property Name="StateCnt">3</Property>
<Property Name="SwitchValues">1;3;0;1;-1</Property>
<Property Name="ImageFile">leds.png</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU226RH06;;;N;1;;;-1</Property>
<Property Name="TabIndex">4</Property>
<Property Name="ReadOnlyControl">True</Property>
</Object>
<Property Name="Name">GroupBoxControl2</Property>
<Property Name="Size">181, 261</Property>
<Property Name="Location">262, 74</Property>
<Property Name="Size">181, 158</Property>
<Property Name="Location">363, 3</Property>
<Property Name="Text">226RH06</Property>
<Property Name="TabIndex">6</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.GroupBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="GroupBoxControl1" Children="Controls" ControlName="Group Box">
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl4" Children="Controls" ControlName="Check Box">
<Object Type="Vector.CANalyzer.Panels.Design.GroupBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="GroupBoxControl1" Children="Controls" ControlName="Group Box">
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl4" Children="Controls" ControlName="Check Box">
<Property Name="Name">CheckBoxControl4</Property>
<Property Name="Size">74, 17</Property>
<Property Name="Location">19, 53</Property>
<Property Name="Text">B_DC2_N</Property>
<Property Name="Size">75, 17</Property>
<Property Name="Location">14, 53</Property>
<Property Name="Text">DC2 Norm</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU223RH06;;;B_DC2_N;1;;;-1</Property>
<Property Name="TabIndex">9</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl3" Children="Controls" ControlName="Check Box">
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl3" Children="Controls" ControlName="Check Box">
<Property Name="Name">CheckBoxControl3</Property>
<Property Name="Size">73, 17</Property>
<Property Name="Location">104, 30</Property>
<Property Name="Text">B_DC1_E</Property>
<Property Name="Size">67, 17</Property>
<Property Name="Location">99, 30</Property>
<Property Name="Text">DC1 Ess</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU223RH06;;;B_DC1_E;1;;;-1</Property>
<Property Name="TabIndex">8</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl2" Children="Controls" ControlName="Check Box">
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl2" Children="Controls" ControlName="Check Box">
<Property Name="Name">CheckBoxControl2</Property>
<Property Name="Size">73, 17</Property>
<Property Name="Location">104, 53</Property>
<Property Name="Text">B_DC2_E</Property>
<Property Name="Size">67, 17</Property>
<Property Name="Location">99, 53</Property>
<Property Name="Text">DC2 Ess</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU223RH06;;;B_DC2_E;1;;;-1</Property>
<Property Name="TabIndex">7</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl1" Children="Controls" ControlName="Check Box">
<Object Type="Vector.CANalyzer.Panels.Design.CheckBoxControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="CheckBoxControl1" Children="Controls" ControlName="Check Box">
<Property Name="Name">CheckBoxControl1</Property>
<Property Name="Size">74, 17</Property>
<Property Name="Location">19, 30</Property>
<Property Name="Text">B_DC1_N</Property>
<Property Name="Size">75, 17</Property>
<Property Name="Location">14, 30</Property>
<Property Name="Text">DC1 Norm</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU223RH06;;;B_DC1_N;1;;;-1</Property>
<Property Name="TabIndex">6</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.SwitchControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="SwitchControl2" ControlName="Switch/Indicator">
<Object Type="Vector.CANalyzer.Panels.Design.SwitchControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="SwitchControl2" ControlName="Switch/Indicator">
<Property Name="Name">SwitchControl2</Property>
<Property Name="Size">54, 62</Property>
<Property Name="Location">101, 174</Property>
<Property Name="StateCnt">2</Property>
<Property Name="SwitchValues">1;2;0;1</Property>
<Property Name="Size">60, 60</Property>
<Property Name="Location">99, 88</Property>
<Property Name="StateCnt">3</Property>
<Property Name="SwitchValues">1;3;0;1;-1</Property>
<Property Name="ImageFile">leds.png</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU223RH06;;;E;1;;;-1</Property>
<Property Name="TabIndex">5</Property>
<Property Name="ReadOnlyControl">True</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.SwitchControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="SwitchControl1" ControlName="Switch/Indicator">
<Object Type="Vector.CANalyzer.Panels.Design.SwitchControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="SwitchControl1" ControlName="Switch/Indicator">
<Property Name="Name">SwitchControl1</Property>
<Property Name="Size">54, 62</Property>
<Property Name="Location">19, 174</Property>
<Property Name="StateCnt">2</Property>
<Property Name="SwitchValues">1;2;0;1</Property>
<Property Name="Size">60, 60</Property>
<Property Name="Location">21, 88</Property>
<Property Name="StateCnt">3</Property>
<Property Name="SwitchValues">1;3;0;1;-1</Property>
<Property Name="ImageFile">leds.png</Property>
<Property Name="SymbolConfiguration">4;16;Airbus::DEU223RH06;;;N;1;;;-1</Property>
<Property Name="TabIndex">4</Property>
<Property Name="ReadOnlyControl">True</Property>
</Object>
<Property Name="Name">GroupBoxControl1</Property>
<Property Name="Size">181, 261</Property>
<Property Name="Location">58, 74</Property>
<Property Name="Size">181, 158</Property>
<Property Name="Location">176, 3</Property>
<Property Name="Text">223RH06</Property>
<Property Name="TabIndex">4</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.ButtonControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="ButtonControl4" Children="Controls" ControlName="Button 4">
<Object Type="Vector.CANalyzer.Panels.Design.ButtonControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="ButtonControl4" Children="Controls" ControlName="Button 4">
<Property Name="Name">ButtonControl4</Property>
<Property Name="Size">75, 38</Property>
<Property Name="Location">266, 18</Property>
<Property Name="Text">NORM_DC1</Property>
<Property Name="Location">89, 98</Property>
<Property Name="Text">Norm DC1</Property>
<Property Name="SymbolConfiguration">4;16;Airbus;;;NORM_DC1;1;;;-1</Property>
<Property Name="TabIndex">3</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.ButtonControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="ButtonControl3" Children="Controls" ControlName="Button 3">
<Object Type="Vector.CANalyzer.Panels.Design.ButtonControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="ButtonControl3" Children="Controls" ControlName="Button 3">
<Property Name="Name">ButtonControl3</Property>
<Property Name="Size">75, 38</Property>
<Property Name="Location">347, 18</Property>
<Property Name="Text">NORM_DC2</Property>
<Property Name="Location">89, 142</Property>
<Property Name="Text">Norm DC2</Property>
<Property Name="SymbolConfiguration">4;16;Airbus;;;NORM_DC2;1;;;-1</Property>
<Property Name="TabIndex">2</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.ButtonControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="ButtonControl2" Children="Controls" ControlName="Button 2">
<Object Type="Vector.CANalyzer.Panels.Design.ButtonControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="ButtonControl2" Children="Controls" ControlName="Button 2">
<Property Name="Name">ButtonControl2</Property>
<Property Name="Size">75, 38</Property>
<Property Name="Location">185, 18</Property>
<Property Name="Text">ESS_DC2</Property>
<Property Name="Location">3, 142</Property>
<Property Name="Text">Ess DC2</Property>
<Property Name="SymbolConfiguration">4;16;Airbus;;;ESS_DC2;1;;;-1</Property>
<Property Name="TabIndex">1</Property>
</Object>
<Object Type="Vector.CANalyzer.Panels.Design.ButtonControl, Vector.CANalyzer.Panels.CommonControls, Version=8.1.97.0, Culture=neutral, PublicKeyToken=null" Name="ButtonControl1" Children="Controls" ControlName="Button">
<Object Type="Vector.CANalyzer.Panels.Design.ButtonControl, Vector.CANalyzer.Panels.CommonControls, Version=8.2.40.0, Culture=neutral, PublicKeyToken=null" Name="ButtonControl1" Children="Controls" ControlName="Button">
<Property Name="Name">ButtonControl1</Property>
<Property Name="Size">75, 38</Property>
<Property Name="Location">104, 18</Property>
<Property Name="Text">ESS_DC1</Property>
<Property Name="Location">3, 98</Property>
<Property Name="Text">Ess DC1</Property>
<Property Name="SymbolConfiguration">4;16;Airbus;;;ESS_DC1;1;;;-1</Property>
<Property Name="TabIndex">0</Property>
</Object>
<Property Name="Name">Panel</Property>
<Property Name="Size">501, 374</Property>
<Property Name="Size">549, 183</Property>
</Object>
</Panel>

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Mapping Version="2">
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1">
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1" Assignment="OnChange">
<ValueObject1 ItemType="symSystemVariable">
<BusType>-1</BusType>
<DatabaseName>Airbus::DEU223RH06::DC1_E</DatabaseName>
@ -18,13 +18,13 @@
</ValueObject1>
<ValueObject2 ItemType="symSystemVariable">
<BusType>1</BusType>
<DatabaseName>Ethernet1::Client_100::Data::OutputBits</DatabaseName>
<DatabaseName>Ethernet1::Client_2::Data::OutputBits</DatabaseName>
<Description />
<EnvVarName />
<FullName>Ethernet1::Client_100::Data::OutputBits</FullName>
<FullName>Ethernet1::Client_2::Data::OutputBits</FullName>
<ID>5</ID>
<MessageName />
<Name>Ethernet1::Client_100::Data::OutputBits</Name>
<Name>Ethernet1::Client_2::Data::OutputBits</Name>
<NeedsMessage>False</NeedsMessage>
<NetworkName />
<NodeName />
@ -32,7 +32,7 @@
<VariableType>5</VariableType>
</ValueObject2>
</MappingRelation>
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1">
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1" Assignment="OnChange">
<ValueObject1 ItemType="symSystemVariable">
<BusType>-1</BusType>
<DatabaseName>Airbus::DEU223RH06::DC1_N</DatabaseName>
@ -50,13 +50,13 @@
</ValueObject1>
<ValueObject2 ItemType="symSystemVariable">
<BusType>3</BusType>
<DatabaseName>Ethernet1::Client_100::Data::OutputBits</DatabaseName>
<DatabaseName>Ethernet1::Client_2::Data::OutputBits</DatabaseName>
<Description />
<EnvVarName />
<FullName>Ethernet1::Client_100::Data::OutputBits</FullName>
<FullName>Ethernet1::Client_2::Data::OutputBits</FullName>
<ID>5</ID>
<MessageName />
<Name>Ethernet1::Client_100::Data::OutputBits</Name>
<Name>Ethernet1::Client_2::Data::OutputBits</Name>
<NeedsMessage>False</NeedsMessage>
<NetworkName />
<NodeName />
@ -64,7 +64,7 @@
<VariableType>5</VariableType>
</ValueObject2>
</MappingRelation>
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1">
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1" Assignment="OnChange">
<ValueObject1 ItemType="symSystemVariable">
<BusType>-1</BusType>
<DatabaseName>Airbus::DEU223RH06::DC2_E</DatabaseName>
@ -82,13 +82,13 @@
</ValueObject1>
<ValueObject2 ItemType="symSystemVariable">
<BusType>0</BusType>
<DatabaseName>Ethernet1::Client_100::Data::OutputBits</DatabaseName>
<DatabaseName>Ethernet1::Client_2::Data::OutputBits</DatabaseName>
<Description />
<EnvVarName />
<FullName>Ethernet1::Client_100::Data::OutputBits</FullName>
<FullName>Ethernet1::Client_2::Data::OutputBits</FullName>
<ID>5</ID>
<MessageName />
<Name>Ethernet1::Client_100::Data::OutputBits</Name>
<Name>Ethernet1::Client_2::Data::OutputBits</Name>
<NeedsMessage>False</NeedsMessage>
<NetworkName />
<NodeName />
@ -96,7 +96,7 @@
<VariableType>5</VariableType>
</ValueObject2>
</MappingRelation>
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1">
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1" Assignment="OnChange">
<ValueObject1 ItemType="symSystemVariable">
<BusType>-1</BusType>
<DatabaseName>Airbus::DEU223RH06::DC2_N</DatabaseName>
@ -114,13 +114,13 @@
</ValueObject1>
<ValueObject2 ItemType="symSystemVariable">
<BusType>2</BusType>
<DatabaseName>Ethernet1::Client_100::Data::OutputBits</DatabaseName>
<DatabaseName>Ethernet1::Client_2::Data::OutputBits</DatabaseName>
<Description />
<EnvVarName />
<FullName>Ethernet1::Client_100::Data::OutputBits</FullName>
<FullName>Ethernet1::Client_2::Data::OutputBits</FullName>
<ID>5</ID>
<MessageName />
<Name>Ethernet1::Client_100::Data::OutputBits</Name>
<Name>Ethernet1::Client_2::Data::OutputBits</Name>
<NeedsMessage>False</NeedsMessage>
<NetworkName />
<NodeName />
@ -128,7 +128,7 @@
<VariableType>5</VariableType>
</ValueObject2>
</MappingRelation>
<MappingRelation Active="True" DirectionVar1ToVar2="False" Offset="0" Factor="1">
<MappingRelation Active="True" DirectionVar1ToVar2="False" Offset="0" Factor="1" Assignment="OnChange">
<ValueObject1 ItemType="symSystemVariable">
<BusType>-1</BusType>
<DatabaseName>Airbus::TL_CUT_OFF</DatabaseName>
@ -146,13 +146,13 @@
</ValueObject1>
<ValueObject2 ItemType="symSystemVariable">
<BusType>0</BusType>
<DatabaseName>Ethernet1::Client_100::Data::InputBits</DatabaseName>
<DatabaseName>Ethernet1::Client_3::Data::InputBits</DatabaseName>
<Description />
<EnvVarName />
<FullName>Ethernet1::Client_100::Data::InputBits</FullName>
<FullName>Ethernet1::Client_3::Data::InputBits</FullName>
<ID>5</ID>
<MessageName />
<Name>Ethernet1::Client_100::Data::InputBits</Name>
<Name>Ethernet1::Client_3::Data::InputBits</Name>
<NeedsMessage>False</NeedsMessage>
<NetworkName />
<NodeName />
@ -160,7 +160,7 @@
<VariableType>5</VariableType>
</ValueObject2>
</MappingRelation>
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1">
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1" Assignment="OnChange">
<ValueObject1 ItemType="symSystemVariable">
<BusType>-1</BusType>
<DatabaseName>Airbus::DEU226RH06::DC1_N</DatabaseName>
@ -178,13 +178,13 @@
</ValueObject1>
<ValueObject2 ItemType="symSystemVariable">
<BusType>7</BusType>
<DatabaseName>Ethernet1::Client_100::Data::OutputBits</DatabaseName>
<DatabaseName>Ethernet1::Client_2::Data::OutputBits</DatabaseName>
<Description />
<EnvVarName />
<FullName>Ethernet1::Client_100::Data::OutputBits</FullName>
<FullName>Ethernet1::Client_2::Data::OutputBits</FullName>
<ID>5</ID>
<MessageName />
<Name>Ethernet1::Client_100::Data::OutputBits</Name>
<Name>Ethernet1::Client_2::Data::OutputBits</Name>
<NeedsMessage>False</NeedsMessage>
<NetworkName />
<NodeName />
@ -192,7 +192,7 @@
<VariableType>5</VariableType>
</ValueObject2>
</MappingRelation>
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1">
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1" Assignment="OnChange">
<ValueObject1 ItemType="symSystemVariable">
<BusType>-1</BusType>
<DatabaseName>Airbus::DEU226RH06::DC2_E</DatabaseName>
@ -210,13 +210,13 @@
</ValueObject1>
<ValueObject2 ItemType="symSystemVariable">
<BusType>4</BusType>
<DatabaseName>Ethernet1::Client_100::Data::OutputBits</DatabaseName>
<DatabaseName>Ethernet1::Client_2::Data::OutputBits</DatabaseName>
<Description />
<EnvVarName />
<FullName>Ethernet1::Client_100::Data::OutputBits</FullName>
<FullName>Ethernet1::Client_2::Data::OutputBits</FullName>
<ID>5</ID>
<MessageName />
<Name>Ethernet1::Client_100::Data::OutputBits</Name>
<Name>Ethernet1::Client_2::Data::OutputBits</Name>
<NeedsMessage>False</NeedsMessage>
<NetworkName />
<NodeName />
@ -224,7 +224,7 @@
<VariableType>5</VariableType>
</ValueObject2>
</MappingRelation>
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1">
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1" Assignment="OnChange">
<ValueObject1 ItemType="symSystemVariable">
<BusType>-1</BusType>
<DatabaseName>Airbus::DEU226RH06::DC2_N</DatabaseName>
@ -242,13 +242,13 @@
</ValueObject1>
<ValueObject2 ItemType="symSystemVariable">
<BusType>6</BusType>
<DatabaseName>Ethernet1::Client_100::Data::OutputBits</DatabaseName>
<DatabaseName>Ethernet1::Client_2::Data::OutputBits</DatabaseName>
<Description />
<EnvVarName />
<FullName>Ethernet1::Client_100::Data::OutputBits</FullName>
<FullName>Ethernet1::Client_2::Data::OutputBits</FullName>
<ID>5</ID>
<MessageName />
<Name>Ethernet1::Client_100::Data::OutputBits</Name>
<Name>Ethernet1::Client_2::Data::OutputBits</Name>
<NeedsMessage>False</NeedsMessage>
<NetworkName />
<NodeName />
@ -256,7 +256,7 @@
<VariableType>5</VariableType>
</ValueObject2>
</MappingRelation>
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1">
<MappingRelation Active="True" DirectionVar1ToVar2="True" Offset="0" Factor="1" Assignment="OnChange">
<ValueObject1 ItemType="symSystemVariable">
<BusType>-1</BusType>
<DatabaseName>Airbus::DEU226RH06::DC1_E</DatabaseName>
@ -274,13 +274,13 @@
</ValueObject1>
<ValueObject2 ItemType="symSystemVariable">
<BusType>5</BusType>
<DatabaseName>Ethernet1::Client_100::Data::OutputBits</DatabaseName>
<DatabaseName>Ethernet1::Client_2::Data::OutputBits</DatabaseName>
<Description />
<EnvVarName />
<FullName>Ethernet1::Client_100::Data::OutputBits</FullName>
<FullName>Ethernet1::Client_2::Data::OutputBits</FullName>
<ID>5</ID>
<MessageName />
<Name>Ethernet1::Client_100::Data::OutputBits</Name>
<Name>Ethernet1::Client_2::Data::OutputBits</Name>
<NeedsMessage>False</NeedsMessage>
<NetworkName />
<NodeName />

View file

@ -2,16 +2,35 @@
<systemvariables version="4">
<namespace name="" comment="">
<namespace name="Airbus" comment="">
<namespace name="R14" comment="">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="V" name="S5_1" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="V" name="S5_2" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="L1" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="X" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<namespace name="DEU223RH06" comment="">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="DC1_N" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="E" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="DC1_E" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="B_DC1_N" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="B_DC2_E" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="DC2_N" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="B_DC1_E" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="B_DC2_N" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="DC2_E" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="N" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
</namespace>
<namespace name="R12" comment="">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="L1" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="X" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<namespace name="DEU226RH06" comment="">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="DC1_N" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="E" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="DC1_E" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="B_DC2_N" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="DC2_E" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="B_DC1_N" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="B_DC2_E" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="DC2_N" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="N" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="B_DC1_E" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
</namespace>
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="ESS_DC1" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="NORM_DC1" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="ESS_DC2" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="NORM_DC2" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="TL_CUT_OFF" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" />
</namespace>
</namespace>
</systemvariables>

View file

@ -5,96 +5,67 @@
<namespace name="Modbus" comment="">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="ms" name="RequestTimeout" comment="The maximum duration for a Modbus-UDP/-TCP request in milliseconds. After timeout a retransmission may be started (see MaxRetransmissionCount). Use `ping` to get the maximum latency to a device, double it and add 2-3 ms for processing." bitcount="32" isSigned="true" encoding="65001" type="int" startValue="10" minValue="1" minValuePhys="1" maxValue="1000" maxValuePhys="1000" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="Port" comment="" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="502" minValue="1" minValuePhys="1" maxValue="65535" maxValuePhys="65535" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="times" name="MaxTransmissionCount" comment="How often a retransmission of a request will be sent until it gets discarded and an error is thrown." bitcount="32" isSigned="true" encoding="65001" type="int" startValue="1" minValue="1" minValuePhys="1" maxValue="10" maxValuePhys="10" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="times" name="MaxTransmissionCount" comment="How often a retransmission of a request will be sent until it gets discarded and an error is thrown." bitcount="32" isSigned="true" encoding="65001" type="int" startValue="2" minValue="1" minValuePhys="1" maxValue="10" maxValuePhys="10" />
</namespace>
<namespace name="TcpIp" comment="">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="AdapterIndex" comment="Index of network interface to use" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="2" minValue="1" minValuePhys="1" maxValue="20" maxValuePhys="20" />
</namespace>
</namespace>
<namespace name="Ethernet1" comment="Subnet: 192.168.1.">
<namespace name="Client_100" comment="Server with ip address '192.168.1.100'">
<namespace name="Client_2" comment="Server with ip address '192.168.1.2'">
<namespace name="Config" comment="Configuration section for this server">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="IP" comment="The IP address of this server" bitcount="8" isSigned="true" encoding="65001" type="string" startValue="192.168.1.100" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="IP" comment="The IP address of this server" bitcount="8" isSigned="true" encoding="65001" type="string" startValue="192.168.1.2" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="ms" name="Interval" comment="The interval with which the device will be queried" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="100" minValue="10" minValuePhys="10" maxValue="10000" maxValuePhys="10000" />
</namespace>
<namespace name="Info" comment="Some information about the device">
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="Vendor" comment="The vendor of the device" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="23">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="Vendor" comment="The vendor of the device" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="23">
<valuetable definesMinMax="true">
<valuetableentry value="2" description="BuR" />
<valuetableentry value="23" description="Wago" />
</valuetable>
</variable>
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="SerialCode" comment="The serial code of the server" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="750" minValue="1" minValuePhys="1" maxValue="10000" maxValuePhys="10000" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="DeviceCode" comment="The device code of the server" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="881" minValue="1" minValuePhys="1" maxValue="10000" maxValuePhys="10000" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="Modules" comment="The type and number of inputs of modules that are connected to the server" bitcount="8" isSigned="true" encoding="65001" type="string" startValue="DI2,DO16,DO16" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="InputRegisters" comment="Number of input registers" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="InputBits" comment="Number of input bits" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="2" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="OutputRegisters" comment="Number of output registers" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="OutputBits" comment="Number of output bits" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="32" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputRegisters" comment="Number of input registers" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="2" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="Modules" comment="The type and number of inputs of modules that are connected to the server" bitcount="8" isSigned="true" encoding="65001" type="string" startValue="DI2,AI2,DO16" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="SerialCode" comment="The serial code of the server" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="750" minValue="1" minValuePhys="1" maxValue="10000" maxValuePhys="10000" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="DeviceCode" comment="The device code of the server" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="881" minValue="1" minValuePhys="1" maxValue="10000" maxValuePhys="10000" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputBits" comment="Number of input bits" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="2" minValue="0" minValuePhys="0" maxValue="512" maxValuePhys="512" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputBits" comment="Number of output bits" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="16" minValue="0" minValuePhys="0" maxValue="512" maxValuePhys="512" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputRegisters" comment="Number of output registers" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
</namespace>
<namespace name="Data" comment="The actual process image">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputRegisters" comment="The values of the input registers" bitcount="9" isSigned="true" encoding="65001" type="intarray" arrayLength="0" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputBits" comment="The state of the input bits" bitcount="2" isSigned="true" encoding="65001" type="intarray" arrayLength="2" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputRegisters" comment="The values of the output registers. Write here and the values will be sent to the device" bitcount="9" isSigned="true" encoding="65001" type="intarray" arrayLength="0" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputBits" comment="The state of the output bits. Write here and the values will be sent to the device" bitcount="2" isSigned="true" encoding="65001" type="intarray" arrayLength="32" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputRegisters" comment="The values of the input registers" bitcount="32" isSigned="true" encoding="65001" type="intarray" arrayLength="2" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputBits" comment="The state of the input bits" bitcount="32" isSigned="true" encoding="65001" type="intarray" arrayLength="2" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputBits" comment="The state of the output bits. Write here and the values will be sent to the device" bitcount="32" isSigned="true" encoding="65001" type="intarray" arrayLength="16" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputRegisters" comment="The values of the output registers. Write here and the values will be sent to the device" bitcount="32" isSigned="true" encoding="65001" type="intarray" arrayLength="0" />
</namespace>
</namespace>
<namespace name="Client_101" comment="Server with ip address '192.168.1.101'">
<namespace name="Client_3" comment="Server with ip address '192.168.1.3'">
<namespace name="Config" comment="Configuration section for this server">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="IP" comment="The IP address of this server" bitcount="8" isSigned="true" encoding="65001" type="string" startValue="192.168.1.101" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="IP" comment="The IP address of this server" bitcount="8" isSigned="true" encoding="65001" type="string" startValue="192.168.1.3" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="ms" name="Interval" comment="The interval with which the device will be queried" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="100" minValue="10" minValuePhys="10" maxValue="10000" maxValuePhys="10000" />
</namespace>
<namespace name="Info" comment="Some information about the device">
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="Vendor" comment="The vendor of the device" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="23">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="Vendor" comment="The vendor of the device" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="2">
<valuetable definesMinMax="true">
<valuetableentry value="2" description="BuR" />
<valuetableentry value="23" description="Wago" />
</valuetable>
</variable>
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="SerialCode" comment="The serial code of the server" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="750" minValue="1" minValuePhys="1" maxValue="10000" maxValuePhys="10000" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="DeviceCode" comment="The device code of the server" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="881" minValue="1" minValuePhys="1" maxValue="10000" maxValuePhys="10000" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="Modules" comment="The type and number of inputs of modules that are connected to the server" bitcount="8" isSigned="true" encoding="65001" type="string" startValue="DI2,AI2,DO16" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="InputRegisters" comment="Number of input registers" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="2" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="InputBits" comment="Number of input bits" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="2" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="OutputRegisters" comment="Number of output registers" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="OutputBits" comment="Number of output bits" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="16" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputRegisters" comment="Number of input registers" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="7" minValue="0" minValuePhys="0" maxValue="2048" maxValuePhys="2048" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="Modules" comment="The type and number of inputs of modules that are connected to the server" bitcount="8" isSigned="true" encoding="65001" type="string" startValue="" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="SerialCode" comment="The serial code of the server" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="8828" minValue="1" minValuePhys="1" maxValue="10000" maxValuePhys="10000" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="DeviceCode" comment="The device code of the server" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="1" minValuePhys="1" maxValue="10000" maxValuePhys="10000" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputBits" comment="Number of input bits" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="64" minValue="0" minValuePhys="0" maxValue="16384" maxValuePhys="16384" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputBits" comment="Number of output bits" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="0" minValuePhys="0" maxValue="16384" maxValuePhys="16384" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputRegisters" comment="Number of output registers" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="0" minValuePhys="0" maxValue="2048" maxValuePhys="2048" />
</namespace>
<namespace name="Data" comment="The actual process image">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputRegisters" comment="The values of the input registers" bitcount="9" isSigned="true" encoding="65001" type="intarray" arrayLength="2" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputBits" comment="The state of the input bits" bitcount="2" isSigned="true" encoding="65001" type="intarray" arrayLength="2" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputRegisters" comment="The values of the output registers. Write here and the values will be sent to the device" bitcount="9" isSigned="true" encoding="65001" type="intarray" arrayLength="0" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputBits" comment="The state of the output bits. Write here and the values will be sent to the device" bitcount="2" isSigned="true" encoding="65001" type="intarray" arrayLength="16" />
</namespace>
</namespace>
</namespace>
<namespace name="Ethernet100" comment="Subnet: 192.168.100.">
<namespace name="Client_" comment="Server with ip address ''">
<namespace name="Config" comment="Configuration section for this server">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="IP" comment="The IP address of this server" bitcount="8" isSigned="true" encoding="65001" type="string" startValue="" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="ms" name="Interval" comment="The interval with which the device will be queried" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="100" minValue="10" minValuePhys="10" maxValue="10000" maxValuePhys="10000" />
</namespace>
<namespace name="Info" comment="Some information about the device">
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="Vendor" comment="The vendor of the device" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0">
<valuetable definesMinMax="true">
<valuetableentry value="2" description="BuR" />
<valuetableentry value="23" description="Wago" />
</valuetable>
</variable>
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="SerialCode" comment="The serial code of the server" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="1" minValuePhys="1" maxValue="10000" maxValuePhys="10000" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="DeviceCode" comment="The device code of the server" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="1" minValuePhys="1" maxValue="10000" maxValuePhys="10000" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="Modules" comment="The type and number of inputs of modules that are connected to the server" bitcount="8" isSigned="true" encoding="65001" type="string" startValue="" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="InputRegisters" comment="Number of input registers" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="InputBits" comment="Number of input bits" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="OutputRegisters" comment="Number of output registers" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
<variable anlyzLocal="2" readOnly="true" valueSequence="false" unit="" name="OutputBits" comment="Number of output bits" bitcount="32" isSigned="true" encoding="65001" type="int" startValue="0" minValue="0" minValuePhys="0" maxValue="256" maxValuePhys="256" />
</namespace>
<namespace name="Data" comment="The actual process image">
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputRegisters" comment="The values of the input registers" bitcount="9" isSigned="true" encoding="65001" type="intarray" arrayLength="0" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputBits" comment="The state of the input bits" bitcount="2" isSigned="true" encoding="65001" type="intarray" arrayLength="0" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputRegisters" comment="The values of the output registers. Write here and the values will be sent to the device" bitcount="9" isSigned="true" encoding="65001" type="intarray" arrayLength="0" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputBits" comment="The state of the output bits. Write here and the values will be sent to the device" bitcount="2" isSigned="true" encoding="65001" type="intarray" arrayLength="0" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputRegisters" comment="The values of the input registers" bitcount="32" isSigned="true" encoding="65001" type="intarray" arrayLength="7" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="InputBits" comment="The state of the input bits" bitcount="32" isSigned="true" encoding="65001" type="intarray" arrayLength="64" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputBits" comment="The state of the output bits. Write here and the values will be sent to the device" bitcount="32" isSigned="true" encoding="65001" type="intarray" arrayLength="0" />
<variable anlyzLocal="2" readOnly="false" valueSequence="false" unit="" name="OutputRegisters" comment="The values of the output registers. Write here and the values will be sent to the device" bitcount="32" isSigned="true" encoding="65001" type="intarray" arrayLength="0" />
</namespace>
</namespace>
</namespace>
</namespace>
</systemvariables>
</systemvariables>