Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

Commit

Permalink
feat: set use_external_emergency_stop to false by default when launch…
Browse files Browse the repository at this point in the history
…ing psim (#540)

* feat: set use_external_emergency_stop to false by default when launching psim

Signed-off-by: Azumi Suzuki <[email protected]>

* feat: add comments

Signed-off-by: Azumi Suzuki <[email protected]>

Signed-off-by: Azumi Suzuki <[email protected]>
  • Loading branch information
s-azumi authored Nov 15, 2022
1 parent e1ed860 commit 03fa6d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions autoware_launch/launch/planning_simulator.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@
<arg name="lateral_controller_mode" value="mpc_follower" />
<!-- options for longitudinal_controller_mode: pid -->
<arg name="longitudinal_controller_mode" value="pid" />
<!-- Options for external emergency stop module. Heartbeat topic is required if this is true. -->
<arg name="use_external_emergency_stop" value="false" />
</include>
</group>

Expand Down
2 changes: 2 additions & 0 deletions control_launch/launch/control.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<arg name="vehicle_cmd_gate_param_path" default="$(find-pkg-share control_launch)/config/vehicle_cmd_gate/vehicle_cmd_gate.param.yaml"/>
<arg name="operation_mode_transition_manager_param_path" default="$(find-pkg-share control_launch)/config/operation_mode_transition_manager/operation_mode_transition_manager.param.yaml"/>
<arg name="shift_decider_param_path" default="$(find-pkg-share control_launch)/config/shift_decider/shift_decider.param.yaml"/>
<arg name="use_external_emergency_stop" default="true"/>

<include file="$(find-pkg-share control_launch)/launch/control.launch.py">
<arg name="lateral_controller_mode" value="$(var lateral_controller_mode)" />
Expand All @@ -14,6 +15,7 @@
<arg name="vehicle_cmd_gate_param_path" value="$(var vehicle_cmd_gate_param_path)"/>
<arg name="operation_mode_transition_manager_param_path" value="$(var operation_mode_transition_manager_param_path)"/>
<arg name="shift_decider_param_path" value="$(var shift_decider_param_path)"/>
<arg name="use_external_emergency_stop" value="$(var use_external_emergency_stop)"/>
</include>

</launch>

0 comments on commit 03fa6d3

Please sign in to comment.