Match TFS Changeset 303329

This commit is contained in:
2022-02-01 16:04:54 -07:00
parent 6b39700a26
commit 9de7b67ed6
91 changed files with 6095 additions and 13 deletions

View File

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