Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add note for api name #47

Merged
merged 2 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/design/autoware-interfaces/prototyping/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# List of TIER IV API

!!! note

TIER IV API は High-level API または TIER IV External API と呼ばれる場合があります。

## Deprecated API

これらの API は TIER IV の独自実装であり、段階的に [AD API](../ad-api/list/index.md) に統合する予定です。
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Operation mode compatibility

!!! note

TIER IV API は High-level API または TIER IV External API と呼ばれる場合があります。

## 構成(TIER IV API)

TIER IV API は、以下のような2つの入力セレクター(operator と observer)と、2つのフィルター(pause_driving と engage)からなる構成に基づいて設計されました。
フィルターの engage は車両の直接操作時(DRIVER)以外では常に適用され false の場合にコマンドを停止で上書きする効果を持ちます。
もう一方のフィルターの pause_driving AUTONOMOUS のみが対象で true の場合に車両の最高速度を 0 km/h に設定することで車両を停止させていました。
TIER IV API における Operation Mode は、以下のような2つの入力セレクター(operator と observer)と、2つのフィルター(pause_driving と engage)からなる構成に基づいて設計されました。
Engage フィルターは車両の直接操作時(DRIVER)以外では常に適用され false の場合にコマンドを停止で上書きする効果を持ちます。
もう一方の pause_driving フィルターは AUTONOMOUS のみが対象で true の場合に車両の最高速度を 0 km/h に設定することで車両を停止させていました。

![block-tier4](./operation-mode/block-tier4.drawio.svg)

Expand Down
Loading