syntax = "proto3"; package config; message RobotConfig { double speed = 1; bool loopTrajectory = 2; enum PlanningMode { FLUID = 0; CARTESIAN = 1; } PlanningMode planningMode = 3; }