Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ad_service_state_monitor): add missing vector map input #1169

Merged
merged 1 commit into from
Jun 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<!-- Input -->
<arg name="input_autoware_engage" default="/api/autoware/get/engage"/>
<arg name="input_control_mode" default="/vehicle/status/control_mode"/>
<arg name="input_vector_map" default="/map/vector_map"/>
<arg name="input_route" default="/planning/mission_planning/route"/>
<arg name="input_odometry" default="/localization/kinematic_state"/>

Expand All @@ -28,6 +29,7 @@
<node pkg="ad_service_state_monitor" exec="ad_service_state_monitor" name="ad_service_state_monitor" output="screen">
<remap from="input/autoware_engage" to="$(var input_autoware_engage)"/>
<remap from="input/control_mode" to="$(var input_control_mode)"/>
<remap from="input/vector_map" to="$(var input_vector_map)"/>
<remap from="input/route" to="$(var input_route)"/>
<remap from="input/odometry" to="$(var input_odometry)"/>

Expand Down