Skip to content

Commit

Permalink
fix: delete unused in control_launch (#200)
Browse files Browse the repository at this point in the history
* fix: delete unused in control.launch.py

* fix: delete velocity_controller.param.yaml
  • Loading branch information
h-ohta authored Feb 10, 2022
1 parent bb6f0a5 commit e0eba25
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 82 deletions.

This file was deleted.

14 changes: 0 additions & 14 deletions control_launch/launch/control.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,6 @@ def launch_setup(context, *args, **kwargs):
],
parameters=[
lon_controller_param,
{
"control_rate": LaunchConfiguration("control_rate"),
"show_debug_info": LaunchConfiguration("show_debug_info"),
"enable_smooth_stop": LaunchConfiguration("enable_smooth_stop"),
"enable_pub_debug": LaunchConfiguration("enable_pub_debug"),
},
],
extra_arguments=[{"use_intra_process_comms": LaunchConfiguration("use_intra_process")}],
)
Expand Down Expand Up @@ -341,14 +335,6 @@ def add_launch_arg(name: str, default_value=None, description=None):
[FindPackageShare("lane_departure_checker"), "/config/lane_departure_checker.param.yaml"],
)

# velocity controller
add_launch_arg("control_rate", "30.0", "control rate")
add_launch_arg("show_debug_info", "false", "show debug information")
add_launch_arg(
"enable_smooth_stop", "true", "enable smooth stop (in velocity controller state)"
)
add_launch_arg("enable_pub_debug", "true", "enable to publish debug information")

# vehicle cmd gate
add_launch_arg("use_emergency_handling", "false", "use emergency handling")
add_launch_arg("use_external_emergency_stop", "true", "use external emergency stop")
Expand Down

0 comments on commit e0eba25

Please sign in to comment.