59 lines
1.8 KiB
Plaintext
59 lines
1.8 KiB
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel;
|
|
|
|
namespace DTS.Common.Enums.TSRAIRGo
|
|
{
|
|
public class ArmStateMachineStates
|
|
{
|
|
public enum States
|
|
{
|
|
[Description("Checking Arm State")]
|
|
CheckingArmState,
|
|
[Description("Checking For DAS")]
|
|
CheckingForDAS,
|
|
[Description("Checking For Data")]
|
|
CheckingForData,
|
|
[Description("Clearing Flash")]
|
|
ClearingFlash,
|
|
[Description("Disarmed")]
|
|
Disarmed,
|
|
[Description("Downloading")]
|
|
Downloading,
|
|
[Description("Download cleaning up")]
|
|
DownloadCleaningUp,
|
|
[Description("Download finished")]
|
|
DownloadFinished,
|
|
[Description("Failed")]
|
|
Failed,
|
|
[Description("Faulted")]
|
|
Faulted,
|
|
[Description("Getting Event Info")]
|
|
GettingEventInfo,
|
|
[Description("Waiting for user")]
|
|
IDLE,
|
|
[Description("Post Test Processing")]
|
|
PostTestProcessing,
|
|
[Description("Preparing For Arming")]
|
|
PreparingForArming,
|
|
[Description("Ready For Download")]
|
|
ReadyForDownload,
|
|
[Description("Rearming")]
|
|
Rearming,
|
|
[Description("Recording")]
|
|
Recording,
|
|
[Description("Waiting For Interval")]
|
|
WaitingForInterval,
|
|
[Description("Waiting for schedule start")]
|
|
WaitingForSchedule,
|
|
[Description("Waiting For Trigger")]
|
|
WaitingForTrigger,
|
|
[Description("Streaming")]
|
|
Streaming,
|
|
}
|
|
}
|
|
}
|