Files
DP44/Common/DTS.CommonCore/.svn/pristine/76/7658ed409d0f29ebfddc0944ac50084c0732fb45.svn-base
2026-04-17 14:55:32 -04:00

27 lines
1.0 KiB
Plaintext

using System.Collections.Generic;
namespace DTS.Common.Interface.DASFactory.Diagnostics
{
public interface IArmCheckResults
{
Dictionary<int, string[]> SensorIds { get; set; }
Dictionary<int, double> SquibResistances { get; set; }
/// <summary>
/// some DAS (TDAS Pro rack) can have multiple battery voltages for modules ...
/// </summary>
double?[] BatteryVoltage { get; set; }
double? InputVoltage { get; set; }
bool? StartLineShorted { get; set; }
bool? EventLineShorted { get; set; }
short[] TiltSensorDataPre { get; set; }
double[] TiltDegrees { get; set; }
Dictionary<byte, short[]> IndexedTiltSensorDataPre { get; set; }
Dictionary<byte, double[]> IndexedTiltDegrees { get; set; }
float[] TemperaturesPre { get; set; }
double[] Gains { get; set; }
double[] ZeroData { get; set; }
IDictionary<InputClockSource, bool> InputClockLocks { get; set; }
}
}