Skip to content

Commit

Permalink
Add force_cache_mode_execute_read_only input port
Browse files Browse the repository at this point in the history
Signed-off-by: methylDragon <[email protected]>
  • Loading branch information
methylDragon committed Nov 26, 2023
1 parent b567f56 commit b98f8b9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nexus_capabilities/src/capabilities/plan_motion.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,11 @@ public: static BT::PortsList providedPorts()
BT::InputPort<double>("scale_speed",
"OPTIONAL. An override for the velocity and acceleration scale for the motion plan. This should be within (0, 1]."),
BT::InputPort<std::vector<moveit_msgs::msg::JointConstraint>>(
"start_constraints",
"start_constraints",
"OPTIONAL. If provided the the joint_constraints are used as the start condition. Else, the current state of the robot will be used as the start."),
BT::InputPort<bool>(
"force_cache_mode_execute_read_only",
"OPTIONAL. Set true to force cache mode to ExecuteReadOnly for this request."),
BT::OutputPort<moveit_msgs::msg::RobotTrajectory>(
"result", "The resulting trajectory.")};
}
Expand Down

0 comments on commit b98f8b9

Please sign in to comment.