Skip to content

Commit

Permalink
Use TargetDirectionCommand for gotoOdom
Browse files Browse the repository at this point in the history
  • Loading branch information
glannuzel committed Oct 21, 2024
1 parent abe6425 commit 9761a26
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions protos/goto.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "google/protobuf/wrappers.proto";
import "arm.proto";
import "head.proto";
import "part.proto";
import "mobile_base_mobility.proto";

enum GoalStatus {
NONE = 0;
Expand Down Expand Up @@ -46,12 +47,10 @@ message JointsGoal {
}

message OdometryGoal {
google.protobuf.FloatValue x_goal = 2;
google.protobuf.FloatValue y_goal = 3;
google.protobuf.FloatValue theta_goal = 4;
reachy.part.mobile.base.mobility.TargetDirectionCommand odometry_goal = 1;

google.protobuf.FloatValue distance_tolerance = 5;
google.protobuf.FloatValue angle_tolerance = 6;
google.protobuf.FloatValue distance_tolerance = 2;
google.protobuf.FloatValue angle_tolerance = 3;

google.protobuf.FloatValue timeout = 10;
}
Expand Down

0 comments on commit 9761a26

Please sign in to comment.