Endurance : uint[3] cBrd.WMeterCont added, ver. 2.12.411

This commit is contained in:
Milan Hanajik
2016-12-10 11:33:18 +01:00
parent e1eedb039c
commit c8d0c647b7
5 changed files with 16 additions and 5 deletions
@@ -69,7 +69,8 @@ namespace TBF.BenchControl.Elde
public float VyslExt(int wmNr0, int what) { return 0; }
public void SetWeight(int pos, double mass) { return; } /// not available in sim. mode
public uint[] CyclePar { get { return new uint[163]; } set { return; } } /// dummy
public uint[] CyclePar { get { return cyclePar; } set { cyclePar = value; } } /// dummy
public uint[] WMeterCont { get { return wMeterCont; } } /// dummy
///
/// Private initialization data updated by contructors of children components
@@ -82,6 +83,10 @@ namespace TBF.BenchControl.Elde
uint[] diverterEdge;
uint[] balanceRange;
uint[] cyclePar;
uint[] wMeterCont;
///
/// Private values set by SendCommand()
///
@@ -112,6 +117,8 @@ namespace TBF.BenchControl.Elde
public ControlComSim()
{
rand = new Random();
cyclePar = new uint[163];
wMeterCont = new uint[3] { 1, 2, 3 };
}
/// <summary>