Skip to content

Commit 06b0006

Browse files
committed
docs: update quick start demo and trouble shooting
Signed-off-by: Shumpei Wakabayashi <[email protected]>
1 parent ecde407 commit 06b0006

File tree

5 files changed

+7
-14
lines changed

5 files changed

+7
-14
lines changed

docs/DeveloperGuide/TroubleShooting/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@
88
|in AWSIM(windows) -> Autoware(ubuntu), <br> `$ ros2 topic list` is not displayed.|Allowed by windows firewall|
99
|self-driving stops in the middle of the road.|Maybe bad map data (PointCloud, VectorMap, fbx)6|
1010
|Connecting AWSIM and Autoware results in bad network|Make ros local host-only. Include the following in the .bashrc (The password will be requested at terminal startup after OS startup.) <br><br> `export ROS_LOCALHOST_ONLY=1`<br>`export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp`<br><br>`if [ ! -e /tmp/cycloneDDS_configured ]; then`<br>`sudo sysctl -w net.core.rmem_max=2147483647`<br>`sudo ip link set lo multicast on`<br>`touch /tmp/cycloneDDS_configured`<br>`fi`|
11+
|Lidar (colored pointcloud on RViz ) does not show. |Reduce processing load by following command. This can only be applied to `awsim-stable` branch. <br><br> `cd <path_to_your_autoware_folder>`<br>`wget "https://drive.google.com/uc?export=download&id=11mkwfg-OaXIp3Z5c3R58Pob3butKwE1Z" -O patch.sh`<br>`bash patch.sh && rm patch.sh`|
12+
|Initial pose does not match automatically. |Set initial pose manually. <br>![](Image_Initial_0.png)<br>![](Image_Initial_1.png)|
13+
14+
Loading

docs/GettingStarted/QuickStartDemo/index.md

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -140,17 +140,11 @@ source /opt/ros/galactic/setup.bash
140140
rosdep update
141141
rosdep install -y --from-paths src --ignore-src --rosdistro $ROS_DISTRO
142142
```
143-
7. Reduce processing load. This can only be applied to `awsim-stable` branch.
144-
```
145-
cd <path_to_your_autoware_folder>
146-
wget "https://drive.google.com/uc?export=download&id=11mkwfg-OaXIp3Z5c3R58Pob3butKwE1Z" -O patch.sh
147-
bash patch.sh && rm patch.sh
148-
```
149-
8. Build the workspace.
143+
7. Build the workspace.
150144
```
151145
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-w"
152146
```
153-
9. Launch Autoware.
147+
8. Launch Autoware.
154148
155149
`<your mapfile location>` should be changed arbitrarily. You cannot use `~` to specify the path.
156150
```
@@ -163,12 +157,7 @@ ros2 launch autoware_launch e2e_simulator.launch.xml vehicle_model:=sample_vehic
163157
1. Launch both AWSIM and Autoware.
164158
![](Image_top.png)
165159
2. Automatically set 2D Pose Estimate with RViz.
166-
!!! info
167-
If it does not set automatically, please try manually.
168-
169-
170-
![](Image_Initial_0.png)
171-
![](Image_Initial_1.png)
160+
![](Image_Initial.png)
172161
3. Manually set 2D Goal Pose with RViz.
173162
![](Image_goal_0.png)
174163
![](Image_goal_1.png)

0 commit comments

Comments
 (0)