-
Notifications
You must be signed in to change notification settings - Fork 145
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: ismetatabay <[email protected]>
- Loading branch information
1 parent
03464d5
commit 0484666
Showing
4 changed files
with
48 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
nav: | ||
- index.md | ||
- Launch vehicle: vehicle | ||
- Launch sensing: sensing | ||
- Launch localization: localization | ||
- Launch perception: perception |
2 changes: 1 addition & 1 deletion
2
docs/how-to-guides/integrating-autoware/launch-autoware/localization/index.md
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,4 +1,4 @@ | ||
# Localization methods | ||
# Localization Launch Files | ||
|
||
## Overview | ||
|
||
|
4 changes: 4 additions & 0 deletions
4
...des/integrating-autoware/launch-autoware/vehicle/images/vehicle_launch_flow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions
42
docs/how-to-guides/integrating-autoware/launch-autoware/vehicle/index.md
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,42 @@ | ||
# Vehicle Launch Files | ||
|
||
## Overview | ||
|
||
The Autoware vehicle stacks begin launching with autoware_launch.xml as mentioned on the | ||
[Launch Autoware](../index.md) page, | ||
and the tier4_vehicle.launch.xml is called in this context. The following diagram describes some of | ||
the Autoware vehicle launch file flow within the `autoware_launch` and `autoware.universe` packages. | ||
|
||
<figure markdown> | ||
![vehicle-launch-flow](images/vehicle_launch_flow.svg){ align=center width=720} | ||
<figcaption> | ||
Autoware vehicle launch flow diagram | ||
</figcaption> | ||
</figure> | ||
|
||
!!! note | ||
|
||
The Autoware project is a large project. | ||
Therefore, as we manage the Autoware project, we utilize specific | ||
arguments in the launch files. | ||
ROS 2 offers an argument-overriding feature for these launch files. | ||
Please refer to [the official ROS 2 launch documentation](https://docs.ros.org/en/humble/Tutorials/Intermediate/Launch/Using-ROS2-Launch-For-Large-Projects.html#parameter-overrides) for further information. | ||
For instance, | ||
if we define an argument at the top-level launch, | ||
it will override the value on lower-level launches. | ||
|
||
We don't have many modification options here, you can disable vehicle_interface launching. | ||
For example, | ||
if you want | ||
to run robot_state_publisher but not `vehicle_interface` you can run autoware with the following command line arguments: | ||
|
||
```bash | ||
ros2 launch autoware_launch autoware.launch.xml ... launch_vehicle_interface:=false ... | ||
``` | ||
|
||
Or you can change it on your `autoware.launch.xml` launch file: | ||
|
||
```diff | ||
- <arg name="launch_vehicle_interface" default="true" description="launch sensing driver"/> | ||
+ <arg name="launch_vehicle_interface" default="false" description="launch sensing driver"/> | ||
``` |