Open
Conversation
…pendencies section
Removed project title from README.md.
…me/fbot_manipulator into feat/mtc_implementation
luizlost01
approved these changes
Feb 21, 2026
luizlost01
left a comment
There was a problem hiding this comment.
for me it's all good, just need to test the points mentioned, and test in the robot computer
| stage->setMonitoredStage(attach_object_stage); | ||
|
|
||
| auto wrapper = std::make_unique<mtc::stages::ComputeIK>("place pose IK", std::move(stage)); | ||
| wrapper->setMaxIKSolutions(4); |
There was a problem hiding this comment.
I think we should add more solution because during testing this is very volatile and has a lot of errors, somewhere between 10
Of course we need to test this on the robot computer to see if there is too much stress, but I think it's ok
| stage->setMonitoredStage(current_state); | ||
|
|
||
| auto wrapper = std::make_unique<mtc::stages::ComputeIK>("grasp pose IK", std::move(stage)); | ||
| wrapper->setMaxIKSolutions(2); |
There was a problem hiding this comment.
only 2 is very susceptible to errors, we should probably add more
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces a full MoveIt Task Constructor (MTC) based manipulation pipeline, replacing the previous task primitives with a structure task architecture.
Changes
New Features
manipulation_task_server.cpp): ROS 2 action server that receivesManipulationTaskaction goals and dispatches to the appropriate MTC task (pick, place, or pick-and-place)MtcTask,MtcPickTask,MtcPlaceTask, andMtcPickAndPlaceTaskwith full MTC stage pipelinesManipulationTask.action): Defined goal/result/feedback interface for the manipulation task servermtc_config.yaml): Added configuration for grasp offsets and MTC planning parametersRemoved
task_primitives.hpp,tasks/pick_task.*, andtasks/task.hppreplaced by the new MTC structureDocs