Ready to test

This commit is contained in:
2022-02-18 16:43:30 -07:00
parent baf8f8b1a5
commit cef49ab67b
182 changed files with 14333 additions and 15482 deletions

View File

@ -1,10 +1,9 @@
using System;
namespace Adaptation.PeerGroup.GCL.Annotations
namespace Adaptation.PeerGroup.GCL.Annotations;
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.Delegate, AllowMultiple = false, Inherited = true)]
public sealed class NotNullAttribute : Attribute
{
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.Delegate, AllowMultiple = false, Inherited = true)]
public sealed class NotNullAttribute : Attribute
{
public NotNullAttribute() { }
}
public NotNullAttribute() { }
}

View File

@ -1,8 +1,7 @@
namespace Adaptation.PeerGroup.GCL.SecsDriver
namespace Adaptation.PeerGroup.GCL.SecsDriver;
public enum HsmsConnectionMode
{
public enum HsmsConnectionMode
{
Active = 0,
Passive = 1
}
Active = 0,
Passive = 1
}

View File

@ -1,8 +1,7 @@
namespace Adaptation.PeerGroup.GCL.SecsDriver
namespace Adaptation.PeerGroup.GCL.SecsDriver;
public enum HsmsSessionMode
{
public enum HsmsSessionMode
{
MultiSession = 0,
SingleSession = 1
}
MultiSession = 0,
SingleSession = 1
}

View File

@ -1,8 +1,7 @@
namespace Adaptation.PeerGroup.GCL.SecsDriver
namespace Adaptation.PeerGroup.GCL.SecsDriver;
public enum SecsTransportType
{
public enum SecsTransportType
{
HSMS = 0,
Serial = 1
}
HSMS = 0,
Serial = 1
}

View File

@ -1,16 +1,15 @@
namespace Adaptation.PeerGroup.GCL.SecsDriver
namespace Adaptation.PeerGroup.GCL.SecsDriver;
public enum SerialBaudRate
{
public enum SerialBaudRate
{
Baud9600 = 0,
Baud19200 = 1,
Baud4800 = 2,
Baud2400 = 3,
Baud1200 = 4,
Baud300 = 5,
Baud150 = 6,
Baud38400 = 7,
Baud57600 = 8,
Baud115200 = 9
}
Baud9600 = 0,
Baud19200 = 1,
Baud4800 = 2,
Baud2400 = 3,
Baud1200 = 4,
Baud300 = 5,
Baud150 = 6,
Baud38400 = 7,
Baud57600 = 8,
Baud115200 = 9
}