-
Notifications
You must be signed in to change notification settings - Fork 148
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: Takagi, Isamu <isamu.takagi@tier4.jp>
- Loading branch information
1 parent
a84a2f1
commit d5b39a6
Showing
10 changed files
with
128 additions
and
0 deletions.
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
18 changes: 18 additions & 0 deletions
18
docs/design/autoware-interfaces/ad-api/list/api/fail_safe/mrm_request/list.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,18 @@ | ||
--- | ||
title: /api/fail_safe/mrm_request/list | ||
status: not released | ||
method: notification | ||
type: | ||
name: autoware_adapi_v1_msgs/msg/MrmRequestList | ||
msg: | ||
- name: requests.user | ||
text: The sender name of the MRM request. | ||
- name: requests.strategy | ||
text: The strategy of the MRM request. | ||
--- | ||
|
||
{% extends 'design/autoware-interfaces/templates/autoware-interface.jinja2' %} | ||
{% block description %} | ||
List the MRM requests from all senders. | ||
For details, see the [fail-safe](../../../../features/fail-safe.md). | ||
{% endblock %} |
21 changes: 21 additions & 0 deletions
21
docs/design/autoware-interfaces/ad-api/list/api/fail_safe/mrm_request/send.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,21 @@ | ||
--- | ||
title: /api/fail_safe/mrm_request/send | ||
status: not released | ||
method: function call | ||
type: | ||
name: autoware_adapi_v1_msgs/srv/SendMrmRequest | ||
req: | ||
- name: request.user | ||
text: The sender name of the MRM request. | ||
- name: request.strategy | ||
text: The strategy of the MRM request. | ||
res: | ||
- name: status | ||
text: response status | ||
--- | ||
|
||
{% extends 'design/autoware-interfaces/templates/autoware-interface.jinja2' %} | ||
{% block description %} | ||
Send the MRM request. | ||
For details, see the [fail-safe](../../../../features/fail-safe.md). | ||
{% endblock %} |
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
21 changes: 21 additions & 0 deletions
21
...esign/autoware-interfaces/ad-api/types/autoware_adapi_v1_msgs/msg/MrmRequest.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,21 @@ | ||
--- | ||
# This file is generated by tools/autoware-interfaces/generate.py | ||
title: autoware_adapi_v1_msgs/msg/MrmRequest | ||
used: | ||
- autoware_adapi_v1_msgs/msg/MrmRequestList | ||
- autoware_adapi_v1_msgs/srv/SendMrmRequest | ||
--- | ||
|
||
{% extends 'design/autoware-interfaces/templates/autoware-data-type.jinja2' %} | ||
{% block definition %} | ||
|
||
```txt | ||
uint16 UNKNOWN = 0 | ||
uint16 CANCEL = 1 # Cancel the MRM request. | ||
uint16 DELEGATE = 2 # Delegate the selection of MRM behavior to Autoware. | ||
uint16 strategy | ||
string user # The identifier of the request sender. | ||
``` | ||
|
||
{% endblock %} |
16 changes: 16 additions & 0 deletions
16
...n/autoware-interfaces/ad-api/types/autoware_adapi_v1_msgs/msg/MrmRequestList.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,16 @@ | ||
--- | ||
# This file is generated by tools/autoware-interfaces/generate.py | ||
title: autoware_adapi_v1_msgs/msg/MrmRequestList | ||
uses: | ||
- autoware_adapi_v1_msgs/msg/MrmRequest | ||
--- | ||
|
||
{% extends 'design/autoware-interfaces/templates/autoware-data-type.jinja2' %} | ||
{% block definition %} | ||
|
||
```txt | ||
builtin_interfaces/Time stamp | ||
autoware_adapi_v1_msgs/MrmRequest[] requests | ||
``` | ||
|
||
{% endblock %} |
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
18 changes: 18 additions & 0 deletions
18
...n/autoware-interfaces/ad-api/types/autoware_adapi_v1_msgs/srv/SendMrmRequest.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,18 @@ | ||
--- | ||
# This file is generated by tools/autoware-interfaces/generate.py | ||
title: autoware_adapi_v1_msgs/srv/SendMrmRequest | ||
uses: | ||
- autoware_adapi_v1_msgs/msg/MrmRequest | ||
- autoware_adapi_v1_msgs/msg/ResponseStatus | ||
--- | ||
|
||
{% extends 'design/autoware-interfaces/templates/autoware-data-type.jinja2' %} | ||
{% block definition %} | ||
|
||
```txt | ||
autoware_adapi_v1_msgs/MrmRequest[] requests | ||
--- | ||
autoware_adapi_v1_msgs/ResponseStatus status | ||
``` | ||
|
||
{% endblock %} |
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
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