Skip to content

Commit 61e40a6

Browse files
committed
Removed explicit reference to HAD function to make intended use more clearly.
Signed-off-by: Markus Lemmer <lemmer@fzi.de>
1 parent b6898b3 commit 61e40a6

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

osi_motionrequest.proto

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ package osi3;
99

1010
//
1111
// \brief This message is intended as an interface between a
12-
// highly-automated-driving function (HAD function) and the actuator management.
12+
// motion-planning function and the actuator management.
13+
// The motion-planning function can thereby be a representation of a
14+
// highly-automated driving function, a human driving behavior model, etc.
1315
//
14-
// The HAD function can either send a desired future trajectory or a desired
16+
// The motion-planning function can either send a desired future trajectory or a desired
1517
// future state. The message can be defined by an additional variable.
1618
//
1719
// \note The coordinate system is defined as right-handed.
@@ -46,21 +48,21 @@ message MotionRequest
4648
//
4749
optional DesiredTrajectory desired_trajectory = 5;
4850

49-
// Define different options for HAD function output.
51+
// Define different options for function output.
5052
// Each option corresponds to a field in the message.
5153
//
5254
enum MotionRequestType
5355
{
54-
// Desired state calculated by the HAD function.
56+
// Desired state calculated by the function.
5557
//
5658
OUTPUT_OPTIONS_DESIRED_STATE = 0;
5759

58-
// Desired trajectory calculated by the HAD function.
60+
// Desired trajectory calculated by the function.
5961
//
6062
OUTPUT_OPTIONS_TRAJECTORY = 1;
6163
}
6264

63-
// \brief The desired state is calculated by the HAD function as a result of
65+
// \brief The desired state is calculated by the function as a result of
6466
// the motion planning stack.
6567
//
6668
// The actuator management is supposed to reach the desired state at the
@@ -93,9 +95,9 @@ message MotionRequest
9395
optional Vector3d acceleration = 5;
9496
}
9597

96-
// \brief Defined trajectory desired by the HAD function.
98+
// \brief Defined trajectory desired by the function.
9799
//
98-
// This trajectory is the result of the trajectory planning step in the HAD function.
100+
// This trajectory is the result of the trajectory planning step in the function.
99101
// The task of the actuator management is to follow this trajectory as closely as possible.
100102
// The timestamps inside the trajectory must be defined in global simulation time.
101103
//

0 commit comments

Comments
 (0)