tbf/TestBenchFramework/BenchControl/Elde/Diverter/DiverterCfg.cs

50 lines
1.4 KiB
C#
Raw Normal View History

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System.IO;
using System.Collections.Generic;
using System.Xml.Serialization;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.Elde.Diverter
{
public class DiverterCfg : ComponentCfgBase, IChildComponentCfg
{
public IComponent GetComponent(IList<IComponent> components) { return new Diverter(this, components); }
public IComponentCfgCtrl GetControl() { return new DiverterCfgCtrl(); }
///
/// Serialized parameters
///
2015-03-24 01:45:36 +00:00
public int BitPosition; /// 0..63
2015-04-18 05:31:52 +00:00
public int StartingLevel; /// 0..100 in %, threshold for the ADC value to start the test
public int StoppingLevel; /// 0..100 in %, threshold for the ADC value to start the test
/// Private parameterless constructor invoked by all other (public) constructors
DiverterCfg()
{
Name = "Div";
ParentName = "CB";
BitPosition = 0;
2015-04-18 05:31:52 +00:00
StartingLevel = 50;
StoppingLevel = 50;
2015-03-24 01:45:36 +00:00
}
public DiverterCfg(IComponentFactory factory)
: this()
{
this.Factory = factory;
}
public string ToString(int i)
{
2015-03-24 01:45:36 +00:00
return string.Format("Name={0}, Parent={1}, Bit={2}, StartEdge={3}%, StopEdge={4}%",
Name,
(string.IsNullOrEmpty(ParentName) ? "-" : ParentName),
2015-03-24 01:45:36 +00:00
BitPosition,
2015-04-18 05:31:52 +00:00
StartingLevel,
StoppingLevel);
}
}
}