-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(control): use preset.yaml to control which modules to launch for…
… control modules (#1237) * add control_module_preset Signed-off-by: xtk8532704 <[email protected]> * fix typo Signed-off-by: xtk8532704 <[email protected]> --------- Signed-off-by: xtk8532704 <[email protected]>
- Loading branch information
1 parent
2269c49
commit c42bd46
Showing
7 changed files
with
91 additions
and
7 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
launch: | ||
# controller | ||
- arg: | ||
name: trajectory_follower_mode | ||
default: trajectory_follower_node | ||
# option: trajectory_follower_node | ||
# smart_mpc_trajectory_follower | ||
# none | ||
|
||
# external_cmd selector/converter | ||
- arg: | ||
name: launch_external_cmd_selector | ||
default: "true" | ||
- arg: | ||
name: launch_external_cmd_converter | ||
default: "true" | ||
|
||
# optional control checkers | ||
- arg: | ||
name: launch_lane_departure_checker | ||
default: "true" | ||
- arg: | ||
name: launch_control_validator | ||
default: "true" | ||
- arg: | ||
name: launch_autonomous_emergency_braking | ||
default: "true" | ||
- arg: | ||
name: launch_collision_detector | ||
default: "true" | ||
- arg: | ||
name: launch_obstacle_collision_checker | ||
default: "false" | ||
- arg: | ||
name: launch_predicted_path_checker | ||
default: "false" | ||
- arg: | ||
name: launch_control_evaluator | ||
default: "true" |
39 changes: 39 additions & 0 deletions
39
autoware_launch/config/control/preset/dlr_control_validator_preset.yaml
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
launch: | ||
# controller | ||
- arg: | ||
name: trajectory_follower_mode | ||
default: none | ||
# option: trajectory_follower_node | ||
# smart_mpc_trajectory_follower | ||
# none | ||
|
||
# external_cmd selector/converter | ||
- arg: | ||
name: launch_external_cmd_selector | ||
default: "false" | ||
- arg: | ||
name: launch_external_cmd_converter | ||
default: "false" | ||
|
||
# optional control checkers | ||
- arg: | ||
name: launch_lane_departure_checker | ||
default: "false" | ||
- arg: | ||
name: launch_control_validator | ||
default: "true" | ||
- arg: | ||
name: launch_autonomous_emergency_braking | ||
default: "false" | ||
- arg: | ||
name: launch_collision_detector | ||
default: "false" | ||
- arg: | ||
name: launch_obstacle_collision_checker | ||
default: "false" | ||
- arg: | ||
name: launch_predicted_path_checker | ||
default: "false" | ||
- arg: | ||
name: launch_control_evaluator | ||
default: "false" |
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
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