-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/AddIndicesFollowJointTrajectory
- Loading branch information
Showing
12 changed files
with
45 additions
and
131 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -5,13 +5,13 @@ on: | |
jobs: | ||
ament_lint: | ||
name: ament_${{ matrix.linter }} | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
linter: [copyright, lint_cmake] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: ros-tooling/[email protected] | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
|
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
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 |
---|---|---|
@@ -1,11 +1,24 @@ | ||
# This message presents current controller state of JTC | ||
|
||
# Header timestamp should be update time of controller state | ||
std_msgs/Header header | ||
|
||
string[] joint_names | ||
trajectory_msgs/JointTrajectoryPoint desired | ||
trajectory_msgs/JointTrajectoryPoint actual | ||
trajectory_msgs/JointTrajectoryPoint error # Redundant, but useful | ||
# The set point, that is, desired state. | ||
trajectory_msgs/JointTrajectoryPoint reference | ||
# Current value of the process (ie: latest sensor measurement on the controlled value). | ||
trajectory_msgs/JointTrajectoryPoint feedback | ||
# The error of the controlled value, essentially reference - feedback (for a regular PID implementation). | ||
trajectory_msgs/JointTrajectoryPoint error | ||
# Current output of the controller. | ||
trajectory_msgs/JointTrajectoryPoint output | ||
|
||
string[] multi_dof_joint_names | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint multi_dof_desired | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint multi_dof_actual | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint multi_dof_error # Redundant, but useful | ||
# The set point, that is, desired state. | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint multi_dof_reference | ||
# Current value of the process (ie: latest sensor measurement on the controlled value). | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint multi_dof_feedback | ||
# The error of the controlled value, essentially reference - feedback (for a regular PID implementation). | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint multi_dof_error | ||
# Current output of the controller. | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint multi_dof_output |
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