Skip to content

Commit

Permalink
Merge branch 'feat/add-mrm-v0.6-launch-based-on-v3.0.0' into feat/add…
Browse files Browse the repository at this point in the history
…-mrm-state-publisher-to-mrm-stop-operator
  • Loading branch information
TetsuKawa authored Jul 2, 2024
2 parents d32f0ab + 974b4a6 commit 1330d45
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@
<group if="$(var use_diagnostic_graph)">
<include file="$(find-pkg-share mrm_handler)/launch/mrm_handler.launch.xml">
<arg name="config_file" value="$(var mrm_handler_param_path)"/>
<arg name="output_mrm_state" value="/system/fail_safe/mrm_state/tmp"/>
</include>
</group>

Expand Down Expand Up @@ -160,15 +161,16 @@
<include file="$(find-pkg-share control_cmd_switcher)/launch/control_cmd_switcher.launch.xml"/>
</group>

<!-- Leader Election Converter-->
<!-- Leader Election Converter-->
<group>
<include file="$(find-pkg-share leader_election_converter)/launch/leader_election_converter.launch.xml"/>
<arg name="input_mrm_state" value="/system/fail_safe/mrm_state/tmp"/>
</group>

<!-- topic state montor for MRMv0.6 one host test-->
<!-- topic state monitor for MRMv0.6 one host test-->
<group>
<include file="$(find-pkg-share topic_state_monitor)/launch/topic_state_monitor.launch.xml">
<arg name="node_name_suffix" value="scenario_planning_trajectry"/>
<arg name="node_name_suffix" value="scenario_planning_trajectory"/>
<arg name="topic" value="/planning/scenario_planning/trajectory"/>
<arg name="topic_type" value="autoware_auto_planning_msgs/msg/Trajectory"/>
<arg name="diag_name" value="publish_to_sub_status"/>
Expand Down
2 changes: 2 additions & 0 deletions launch/tier4_system_launch/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
<exec_depend>leader_election_converter</exec_depend>
<exec_depend>system_error_monitor</exec_depend>
<exec_depend>system_monitor</exec_depend>
<exec_depend>control_cmd_switcher</exec_depend>
<exec_depend>leader_election_converter</exec_depend>

<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ void AvailabilityConverter::convertToUdp(
availability.pull_over = availability_msg->pull_over;
udp_availability_sender_->send(availability);
} else {
RCLCPP_ERROR_THROTTLE(node_->get_logger(), *node_->get_clock(), 5000, "Failed to take control mode report");
RCLCPP_ERROR_THROTTLE(
node_->get_logger(), *node_->get_clock(), 5000, "Failed to take control mode report");
}
}

Expand Down

0 comments on commit 1330d45

Please sign in to comment.