-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: methylDragon <[email protected]>
- Loading branch information
1 parent
45acb1f
commit 2757b3d
Showing
8 changed files
with
1,872 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
add_executable(trajectory_cache_demo src/trajectory_cache_demo.cpp) | ||
ament_target_dependencies(trajectory_cache_demo ${THIS_PACKAGE_INCLUDE_DEPENDS} Boost moveit_ros_trajectory_cache) | ||
|
||
install(TARGETS trajectory_cache_demo DESTINATION lib/${PROJECT_NAME}) | ||
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME}) | ||
install(DIRECTORY config DESTINATION share/${PROJECT_NAME}) |
56 changes: 56 additions & 0 deletions
56
doc/how_to_guides/trajectory_cache/config/trajectory_cache_joint_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,56 @@ | ||
# These are faster joint limits to allow for faster execution. | ||
joint_limits: | ||
panda_joint1: | ||
has_velocity_limits: true | ||
max_velocity: 50.0 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
has_jerk_limits: false | ||
panda_joint2: | ||
has_velocity_limits: true | ||
max_velocity: 50.0 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
has_jerk_limits: false | ||
panda_joint3: | ||
has_velocity_limits: true | ||
max_velocity: 50.0 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
has_jerk_limits: false | ||
panda_joint4: | ||
has_velocity_limits: true | ||
max_velocity: 50.0 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
has_jerk_limits: false | ||
panda_joint5: | ||
has_velocity_limits: true | ||
max_velocity: 50.0 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
has_jerk_limits: false | ||
panda_joint6: | ||
has_velocity_limits: true | ||
max_velocity: 50.0 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
has_jerk_limits: false | ||
panda_joint7: | ||
has_velocity_limits: true | ||
max_velocity: 50.0 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
has_jerk_limits: false | ||
panda_finger_joint1: | ||
has_velocity_limits: true | ||
max_velocity: 25.0 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
has_jerk_limits: false | ||
panda_finger_joint2: | ||
has_velocity_limits: true | ||
max_velocity: 25.0 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
has_jerk_limits: false |
Oops, something went wrong.