贯通车队运行链并支持轨迹自动推导β

This commit is contained in:
2026-08-25 17:59:18 +08:00
parent 95c0b19a26
commit 17092c2766
37 changed files with 3632 additions and 37 deletions
+16
View File
@@ -0,0 +1,16 @@
using MyParking.Shared;
namespace MultiWheelC.Fleet
{
// 隔离车队运行逻辑与具体无线、串口或内存传输实现。
public interface IFleetTransport
{
void SendCommand(FleetCommand command);
void SendReport(FleetMemberReport report);
bool TryReceiveCommand(out FleetCommand command);
bool TryReceiveReport(out FleetMemberReport report);
}
}