Major upgrade
This commit is contained in:
@@ -37,16 +37,16 @@ namespace Raytheon.Instruments.PowerSupply
|
||||
/// <param name="overVoltageProtection"></param>
|
||||
/// <param name="current"></param>
|
||||
/// <param name="overCurrentProtection"></param>
|
||||
/// <param name="outputStatus"></param>
|
||||
/// <param name="isOutputOn"></param>
|
||||
/// <param name="faultStatus"></param>
|
||||
public PowerData(double voltage, double voltageSetpoint, double overVoltageProtection, double current, double overCurrentProtection, bool outputStatus, int faultStatus)
|
||||
public PowerData(double voltage, double voltageSetpoint, double overVoltageProtection, double current, double overCurrentProtection, bool isOutputOn, int faultStatus)
|
||||
{
|
||||
Voltage = voltage;
|
||||
VoltageSetpoint = voltageSetpoint;
|
||||
OverVoltageProtection = overVoltageProtection;
|
||||
Current = current;
|
||||
OverCurrentProtection = overCurrentProtection;
|
||||
OutputStatus = outputStatus;
|
||||
IsOutputOn = isOutputOn;
|
||||
FaultStatus = faultStatus;
|
||||
}
|
||||
|
||||
@@ -66,7 +66,7 @@ namespace Raytheon.Instruments.PowerSupply
|
||||
/// Getter for the output status
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public bool OutputStatus { get; set; }
|
||||
public bool IsOutputOn { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Getter for OCP value
|
||||
|
||||
Reference in New Issue
Block a user