Restructure into DiffWheel/MultiWheel folders, add DiffWheelC and MultiWheelC with MovementTests, FleetRemote multi-vehicle manual sync, deploy templates, and documentation. Update dependency paths to D:\MDCS\Release and mirror motor feedback in MotorRoutine for simulation. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
299 B
C#
11 lines
299 B
C#
using ClumsyCore;
|
|
using MDCSToolBox.Clumsy.Pilot.DiffWheel;
|
|
|
|
namespace DiffWheelC;
|
|
|
|
public class PilotConfig : DiffWheelPilotConfig
|
|
{
|
|
[FieldMember(desc = "差速车底盘轮距(mm)")] public float ChassisWidth = 600f;
|
|
[FieldMember(desc = "调度IP")] public string SimpleIp = "127.0.0.1";
|
|
}
|