Files
StandardSence/StandardScene.Magnetic/Protocol/Fass2CommMode.cs
T

15 lines
435 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace StandardScene.Magnetic.Protocol
{
/// <summary>
/// FASS 2.0 通讯模式:PLC/TCP 主动查询,或 PCB/UDP 被动接收状态上报。
/// </summary>
public enum Fass2CommMode
{
/// <summary>PLCTCP 同步收发,调度主动发 0x00 查询。</summary>
Tcp = 0,
/// <summary>PCBUDP 监听 AGV 上报,回 0x10,命令单向下发。</summary>
Udp = 1
}
}