-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed the wrong type for time parameterization in ompl #55
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
2e23a07
Fixed the wrong type for time parameterization in ompl
jodle001 66196fa
Updated to use the MoveItConfigsBuilder
jodle001 014959d
Optimized the imports.
jodle001 e5fe1b2
Update abb_bringup/launch/abb_moveit.launch.py
jodle001 396f044
Update abb_bringup/launch/abb_moveit.launch.py
jodle001 7eb9379
Update package.xml
jodle001 eadbc1d
Formatting adn also publishing robot_description and semantic
jodle001 e447429
Fixed formatting to pass format test per requeset by Yadunund.
jodle001 6f303b5
Used pre-commit to fix formatting locally.
jodle001 cee3f4a
Removed planning pipeline limits to ompl planner, also added pilz_car…
jodle001 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
robot_specific_config/abb_irb1200_5_90_moveit_config/config/ompl_planning.yaml
This file contains 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
5 changes: 5 additions & 0 deletions
5
robot_specific_config/abb_irb1200_5_90_moveit_config/config/pilz_cartesian_limits.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
cartesian_limits: | ||
max_trans_vel: 1.0 | ||
max_trans_acc: 2.25 | ||
max_trans_dec: -5.0 | ||
max_rot_vel: 1.57 |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This behavior was lost in the changes as by default,
moveit_manage_controllers
is set toTrue
by the builder. I'll open a PR to update.