From 3b184e85bd96391239e480950142c71e4be56af8 Mon Sep 17 00:00:00 2001 From: "Takagi, Isamu" Date: Thu, 28 Nov 2024 18:53:25 +0900 Subject: [PATCH] feat: add note for api name Signed-off-by: Takagi, Isamu --- docs/design/autoware-interfaces/prototyping/index.md | 4 ++++ .../prototyping/migration/operation-mode.md | 8 ++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/design/autoware-interfaces/prototyping/index.md b/docs/design/autoware-interfaces/prototyping/index.md index 75eaf36ee8..bbf223b1ef 100644 --- a/docs/design/autoware-interfaces/prototyping/index.md +++ b/docs/design/autoware-interfaces/prototyping/index.md @@ -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) に統合する予定です。 diff --git a/docs/design/autoware-interfaces/prototyping/migration/operation-mode.md b/docs/design/autoware-interfaces/prototyping/migration/operation-mode.md index 5fe74d2585..479b31f3ff 100644 --- a/docs/design/autoware-interfaces/prototyping/migration/operation-mode.md +++ b/docs/design/autoware-interfaces/prototyping/migration/operation-mode.md @@ -1,9 +1,13 @@ # 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 の場合にコマンドを停止で上書きする効果を持ちます。 +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)