新增1.0和2.0两种协议车型车型

This commit is contained in:
ykkokluo
2026-07-17 13:36:01 +08:00
parent a0dc1e6cd0
commit a28bc68e23
62 changed files with 12638 additions and 203 deletions
@@ -0,0 +1,16 @@
namespace StandardScene.Magnetic.Protocol
{
/// <summary>
/// 由 <see cref="Fass2UdpHub"/> 回调的 UDP/PCB 车型处理接口。
/// </summary>
internal interface IFass2UdpCar
{
ushort VehicleCode { get; }
string RemoteAddress { get; }
int RemotePort { get; }
void OnUdpStateReceived(Fass2StateReport report);
}
}