20 lines
637 B
C#
20 lines
637 B
C#
|
|
|
|||
|
|
|
|||
|
|
namespace DTS.DASLib.Service
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// diagnostics interface for a DAS unit, see <see cref="IDASCommunication" />.
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IDiagnos
|
|||
|
|
{
|
|||
|
|
DiagnosticsActions[] ChannelDiagnostics { get; set; }
|
|||
|
|
DiagnosticsResult[] ChannelDiagnosticsResults { get; set; }
|
|||
|
|
ModuleDiagnosticsResult[] ModuleDiagnosticsResults { get; set; }
|
|||
|
|
BaseInputValues BaseInput { get; set; }
|
|||
|
|
ClockSyncStatus DASClockSyncStatus { get; set; }
|
|||
|
|
ArmCheckActions ArmCheckActions { get; set; }
|
|||
|
|
ArmCheckResults ArmCheckResults { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|