You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
461 B
C#
28 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace HslCommunication.Profinet.LSIS
|
|
{
|
|
/// <summary>
|
|
/// It is determined to be the XGK/I/R series through a reserved area
|
|
/// </summary>
|
|
public enum LSCpuInfo
|
|
{
|
|
XGK = 1,
|
|
XGI,
|
|
XGR,
|
|
XGB_MK,
|
|
XGB_IEC,
|
|
}
|
|
|
|
public enum LSCpuStatus
|
|
{
|
|
RUN = 1,
|
|
STOP,
|
|
ERROR,
|
|
DEBUG
|
|
}
|
|
}
|