File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
aegis_grpc/include/aegis_grpc Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,12 @@ class RobotControlServiceImpl final
2626 using GripperCommand = control_msgs::action::GripperCommand;
2727 using GoalHandleGripper = rclcpp_action::ClientGoalHandle<GripperCommand>;
2828
29+ enum class ServoMode {
30+ None,
31+ JointJog,
32+ TCPTwist
33+ };
34+
2935 explicit RobotControlServiceImpl (std::shared_ptr<rclcpp::Node> node);
3036
3137 // TODO(issue#87) Create additional methods to enable and disable servo control.
@@ -96,11 +102,6 @@ class RobotControlServiceImpl final
96102 rclcpp_action::Client<GripperCommand>::SharedPtr gripper_client_;
97103 rclcpp::TimerBase::SharedPtr servo_pub_timer_;
98104
99- enum class ServoMode {
100- None,
101- JointJog,
102- TCPTwist
103- };
104105 std::mutex servo_mutex_;
105106 ServoMode servo_mode_;
106107 std::string servo_tcp_link_;
You can’t perform that action at this time.
0 commit comments