-
Notifications
You must be signed in to change notification settings - Fork 147
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
f5b7138
commit 7f05988
Showing
9 changed files
with
71 additions
and
9 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/local/command/velocity.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/local/command/velocity | ||
status: not released | ||
method: realtime stream | ||
type: | ||
name: autoware_adapi_v1_msgs/msg/VelocityCommand | ||
msg: | ||
- name: stamp | ||
text: Timestamp when this message was sent. | ||
- name: velocity | ||
text: Target velocity [m/s]. | ||
--- | ||
|
||
{% extends 'design/autoware-interfaces/templates/autoware-interface.jinja2' %} | ||
{% block description %} | ||
Sends velocity command used in local operation mode. | ||
To use this API, select the corresponding mode as described in [manual control](../../../../features/manual-control.md). | ||
{% endblock %} |
18 changes: 18 additions & 0 deletions
18
docs/design/autoware-interfaces/ad-api/list/api/remote/command/velocity.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/remote/command/velocity | ||
status: not released | ||
method: realtime stream | ||
type: | ||
name: autoware_adapi_v1_msgs/msg/VelocityCommand | ||
msg: | ||
- name: stamp | ||
text: Timestamp when this message was sent. | ||
- name: velocity | ||
text: Target velocity [m/s]. | ||
--- | ||
|
||
{% extends 'design/autoware-interfaces/templates/autoware-interface.jinja2' %} | ||
{% block description %} | ||
Sends velocity command used in remote operation mode. | ||
To use this API, select the corresponding mode as described in [manual control](../../../../features/manual-control.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
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 |
---|---|---|
|
@@ -14,6 +14,7 @@ used: | |
uint8 DISABLED = 1 | ||
uint8 PEDAL = 2 | ||
uint8 ACCELERATION = 3 | ||
uint8 VELOCITY = 4 | ||
uint8 mode | ||
``` | ||
|
14 changes: 14 additions & 0 deletions
14
.../autoware-interfaces/ad-api/types/autoware_adapi_v1_msgs/msg/VelocityCommand.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,14 @@ | ||
--- | ||
# This file is generated by tools/autoware-interfaces/generate.py | ||
title: autoware_adapi_v1_msgs/msg/VelocityCommand | ||
--- | ||
|
||
{% extends 'design/autoware-interfaces/templates/autoware-data-type.jinja2' %} | ||
{% block definition %} | ||
|
||
```txt | ||
builtin_interfaces/Time stamp | ||
float32 velocity | ||
``` | ||
|
||
{% 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
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