Skip to content

Commit

Permalink
fix: remove transient local setting from mrm state publisher
Browse files Browse the repository at this point in the history
Signed-off-by: TetsuKawa <kawaguchitnon@icloud.com>
  • Loading branch information
TetsuKawa committed Jul 4, 2024
1 parent 8a2af61 commit 2639a19
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
min_acceleration: -4.0 # min acceleration for sub ecu mrm stop [m/s^2]
max_jerk: 5.0 # max jerk for sub ecu mrm stop [m/s^3]
min_jerk: -5.0 # min jerk for sub ecu mrm stop [m/s^3]

2 changes: 1 addition & 1 deletion system/mrm_stop_operator/src/mrm_stop_operator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ MrmStopOperator::MrmStopOperator(const rclcpp::NodeOptions & node_options)
"~/output/velocity_limit_clear_command", rclcpp::QoS{10}.transient_local());
pub_mrm_state_ =
create_publisher<tier4_system_msgs::msg::MrmState>(
"~/output/mrm_state", rclcpp::QoS{1}.transient_local());
"~/output/mrm_state", rclcpp::QoS{1});


// Timer
Expand Down

0 comments on commit 2639a19

Please sign in to comment.