We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
accel_reason_
1 parent 1349dc2 commit 326a615Copy full SHA for 326a615
planning/behavior_velocity_run_out_module/src/debug.cpp
@@ -73,6 +73,8 @@ visualization_msgs::msg::MarkerArray createPolygonMarkerArray(
73
74
RunOutDebug::RunOutDebug(rclcpp::Node & node) : node_(node)
75
{
76
+ accel_reason_ = AccelReason::UNKNOWN;
77
+
78
pub_debug_values_ =
79
node.create_publisher<Float32MultiArrayStamped>("~/debug/run_out/debug_values", 1);
80
pub_accel_reason_ = node.create_publisher<Int32Stamped>("~/debug/run_out/accel_reason", 1);
planning/behavior_velocity_run_out_module/src/debug.hpp
@@ -86,6 +86,7 @@ class RunOutDebug
86
NO_OBSTACLE = 1,
87
PASS = 2,
88
LOW_JERK = 3,
89
+ UNKNOWN = 4,
90
};
91
92
struct TextWithPosition
0 commit comments