forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: TetsuKawa <kawaguchitnon@icloud.com>
- Loading branch information
Showing
4 changed files
with
86 additions
and
17 deletions.
There are no files selected for viewing
15 changes: 11 additions & 4 deletions
15
system/mrm_stop_operator/launch/mrm_stop_operator.launch.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
<launch> | ||
<arg name="mrm_stop_operator_param_path" default="$(find-pkg-share mrm_stop_operator)/config/mrm_stop_operator.param.yaml"/> | ||
<arg name="input_mrm_request" default="/system/mrm_request"/> | ||
<arg name="input_velocity" default="/vehicle/status/velocity_status"/> | ||
<arg name="output_max_velocity" default="/planning/scenario_planning/max_velocity_candidates"/> | ||
<arg name="output_max_velocity_clear_command" default="/planning/scenario_planning/clear_velocity_limit"/> | ||
<arg name="output_mrm_state" default="/system/fail_safe/mrm_state"/> | ||
|
||
<node pkg="mrm_stop_operator" exec="mrm_stop_operator_node" name="mrm_stop_operator" output="screen"> | ||
<param from="$(var mrm_stop_operator_param_path)"/> | ||
|
||
<remap from="~/input/mrm_request" to="/system/mrm_request"/> | ||
<remap from="~/output/velocity_limit" to="/planning/scenario_planning/max_velocity_candidates"/> | ||
<remap from="~/output/velocity_limit_clear_command" to="/planning/scenario_planning/clear_velocity_limit"/> | ||
|
||
<remap from="~/input/mrm_request" to="$(var input_mrm_request)"/> | ||
<remap from="~/input/velocity" to="$(var input_velocity)"/> | ||
<remap from="~/output/velocity_limit" to="$(var output_max_velocity)"/> | ||
<remap from="~/output/velocity_limit_clear_command" to="$(var output_max_velocity_clear_command)"/> | ||
<remap from="~/output/mrm_state" to="$(var output_mrm_state)"/> | ||
</node> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters