Skip to content

Commit

Permalink
add final build explanation (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
yhisaki authored Oct 12, 2023
1 parent 2456806 commit 86a5795
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
12 changes: 12 additions & 0 deletions documentation/docfx_project/finals/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,18 @@ rosbagデータは以下のリンクからダウンロード可能です。
- 車両の制御モードには、`自動モード``手動モード`の2種類があり、セーフティードライバーの操作により切り替えることができます。
- 自動運転走行中、セーフティードライバーはブレーキをかけることで、車両の制御モードを`自動モード`から`手動モード`に切り替えることができます。これをオーバーライドといいます。セーフティドライバーは自動運転を継続することが危険と判断された場合にオーバーライドを実施します。

## 決勝大会用PCでのソースコードのビルド方法

決勝大会用PCでは,dockerではなく,ローカルでソースコードをビルドすることを想定しています.
依存関係のインストール・ソースコードのビルドには,以下のコマンドを実行してください.

```bash
cd /home/autoware/aichallenge2023-integration-final

rosdep install -y --from-paths src --ignore-src --rosdistro $ROS_DISTRO
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
```

## 決勝大会参加者向け 事前確認事項 (2023/09/28 追記)

決勝大会参加者の皆様は大会当日までに以下を十分に確認してください。
Expand Down
11 changes: 11 additions & 0 deletions documentation/docfx_project_en/finals/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,17 @@ In the final competition, participants will operate a golf cart-style autonomous
- The vehicle offers two control modes: `automatic` and `manual`. The safety driver has the ability to switch between these modes.
- During autonomous driving, the safety driver has the capability to transition the vehicle's control mode from `automatic` to `manual` by pressing the brakes. This action is termed an override. The safety driver will initiate the override if continuing autonomous driving is deemed unsafe.

## Source Code Build Method for Final Competition PC

On the final competition PC, it is assumed that the source code will be built locally, not in docker. For installing dependencies and building the source code, please execute the following commands:

```bash
cd /home/autoware/aichallenge2023-integration-final

rosdep install -y --from-paths src --ignore-src --rosdistro $ROS_DISTRO
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
```

## For Final Tournament Participants (Updated on 2023/09/28)

Please make sure all the participants of the final tournament thoroughly check the following before the day of the tournament.
Expand Down

0 comments on commit 86a5795

Please sign in to comment.