贯通车队运行链并支持轨迹自动推导β
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user