-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Signed-off-by: Andrej Orsula <[email protected]> Co-authored-by: Andrej Orsula <[email protected]>
- Loading branch information
1 parent
06a13b1
commit f53e57e
Showing
2 changed files
with
104 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright (C) 2020 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
syntax = "proto3"; | ||
package ignition.msgs; | ||
option java_package = "com.ignition.msgs"; | ||
option java_outer_classname = "JointTrajectoryProtos"; | ||
|
||
/// \ingroup ignition.msgs | ||
/// \interface JointTrajectory | ||
/// \brief Message for joint trajectory, which can be used to control a model | ||
/// with multiple single-axis joints simultaneously. This message is utilised | ||
/// by JointTrajectoryController plugin | ||
|
||
import "ignition/msgs/header.proto"; | ||
import "ignition/msgs/joint_trajectory_point.proto"; | ||
|
||
message JointTrajectory | ||
{ | ||
/// \brief Optional header data | ||
Header header = 1; | ||
|
||
/// \brief Ordered list of joint names that must be active during execution | ||
/// of this trajectory. The order shall correspond to the values in each | ||
/// trajectory point | ||
repeated string joint_names = 2; | ||
|
||
/// \brief Ordered list of time-parameterised trajectory points, which can | ||
/// describe positions, velocities, accelerations and/or effort for all | ||
/// active joints at each point in time. All points must be ordered | ||
/// according to their time from start, which must be strictly increasing | ||
repeated JointTrajectoryPoint points = 3; | ||
} |
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,57 @@ | ||
/* | ||
* Copyright (C) 2020 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
syntax = "proto3"; | ||
package ignition.msgs; | ||
option java_package = "com.ignition.msgs"; | ||
option java_outer_classname = "JointTrajectoryPointProtos"; | ||
|
||
/// \ingroup ignition.msgs | ||
/// \interface JointTrajectoryPoint | ||
/// \brief Message that specifies the desired state of all single-axis joints | ||
/// at a specific trajectory point. All values for each joint must be ordered | ||
/// according to the joint names provided in JointTrajectory message | ||
|
||
import "ignition/msgs/duration.proto"; | ||
|
||
message JointTrajectoryPoint | ||
{ | ||
/// \brief Position of each joint relative to their "0" position. Units are | ||
/// dependent on the joint type, where radians are used for revolute or | ||
/// continuous joints, and meters for prismatic joints | ||
repeated double positions = 1; | ||
|
||
/// \brief Rate of change in position of each joint. Units are dependent on | ||
/// the joint type, where radians/second are used for revolute or continuous | ||
/// joints, and meters/second for prismatic joints | ||
repeated double velocities = 2; | ||
|
||
/// \brief Rate of change in velocity of each joint. Units are dependent on | ||
/// the joint type, where radians/second^2 are used for revolute or | ||
/// continuous joints, and meters/second^2 for prismatic joints | ||
repeated double accelerations = 3; | ||
|
||
/// \brief Torque or force applied at each joint. Units are dependent on the | ||
/// joint type, where newton-meters are used for revolute or continuous | ||
/// joints (torque), and newtons for prismatic joints (force) | ||
repeated double effort = 4; | ||
|
||
/// \brief Desired time from the beginning of trajectory execution until | ||
/// this trajectory point should be reached. This value must be strictly | ||
/// increasing for consecutive points | ||
Duration time_from_start = 5; | ||
} |