@@ -217,14 +217,14 @@ class StateController
217217 // / @param[in] input The Point geometry message provided by the topic "syropod_remote/secondary_tip_velocity"
218218 void secondaryTipVelocityInputCallback (const geometry_msgs::Point &input);
219219
220- // / Callback for the input manual tip position (in cartesian space) for the AR leg (front right leg)
221- // / @param[in] input The Pose geometry message provided by the subscribed topic "/syropod_manipulation/AR/Pose"
222- // / @see (https://confluence.csiro.au/display/CPS/Weaver+Diagrams)
220+ // / Callback for the input manual tip pose (in cartesian space) for the primary selected leg.
221+ // / @param[in] input The Pose geometry message provided by the subscribed topic
222+ // / "/syropod_manipulation/primary_tip_pose"
223223 void primaryTipPoseInputCallback (const geometry_msgs::Pose &msg);
224224
225- // / Callback for the input manual tip position (in cartesian space) for the AL leg (front left leg).
226- // / @param[in] input The Pose geometry message provided by the subscribed topic "/syropod_manipulation/AL/Pose"
227- // / @see (https://confluence.csiro.au/display/CPS/Weaver+Diagrams)
225+ // / Callback for the input manual tip pose (in cartesian space) for the secondary selected leg.
226+ // / @param[in] input The Pose geometry message provided by the subscribed topic
227+ // / "/syropod_manipulation/secondary_tip_pose"
228228 void secondaryTipPoseInputCallback (const geometry_msgs::Pose &msg);
229229
230230 // / Callback handling the desired parameter selection and sending state messages to user interface.
@@ -291,8 +291,8 @@ class StateController
291291 ros::Subscriber parameter_selection_subscriber_; // /< Subscriber for topic /syropod_remote/parameter_selection
292292 ros::Subscriber parameter_adjustment_subscriber_; // /< Subscriber for topic /syropod_remote/parameter_adjustment
293293
294- ros::Subscriber primary_tip_pose_subscriber_; // /< Subscriber for topic /syropod_manipulation/AR/Pose
295- ros::Subscriber secondary_tip_pose_subscriber_; // /< Subscriber for topic /syropod_manipulation/AL/Pose
294+ ros::Subscriber primary_tip_pose_subscriber_; // /< Subscriber for topic /syropod_manipulation/primary_tip_pose
295+ ros::Subscriber secondary_tip_pose_subscriber_; // /< Subscriber for topic /syropod_manipulation/secondary_tip_pose
296296
297297 ros::Subscriber target_configuration_subscriber_; // /< Subscriber for topic /target_configuration
298298 ros::Subscriber target_body_pose_subscriber_; // /< Subscriber for topic /target_body_pose
@@ -373,8 +373,8 @@ class StateController
373373 LegContainer::iterator leg_it_; // /< Leg iteration member variable used to minimise code
374374 JointContainer::iterator joint_it_; // /< Joint iteration member variable used to minimise code
375375
376- Pose primary_pose_input_; // /< Input for the desired pose of the leg tip AR
377- Pose secondary_pose_input_; // /< Input for the desired pose of the leg tip AR
376+ Pose primary_pose_input_; // /< Input for the desired pose of primary leg tip
377+ Pose secondary_pose_input_; // /< Input for the desired pose of secondary the leg tip
378378
379379public:
380380 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
0 commit comments