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(ad-api): drop allow_while_using_route option #633

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: 0 additions & 4 deletions docs/design/autoware-interfaces/ad-api/features/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,3 @@ See the sections below for supported options and details.
### allow_goal_modification

**[v1.1.0]** Autoware tries to look for an alternate goal when goal is unreachable (e.g., when there is an obstacle on the given goal). When setting a route from the API, applications can choose whether they allow Autoware to adjust goal pose in such situation. When set false, Autoware may get stuck until the given goal becomes reachable.

### allow_while_using_route

**[v1.6.0]** This option only affects the route change APIs. Autoware accepts new route even while the vehicle is using the current route. The APIs fail if it cannot safely transition to new route. When set false, the APIs always fail when the vehicle is using the route.
1 change: 0 additions & 1 deletion docs/design/autoware-interfaces/ad-api/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
## v1.6.0 (Not released)

- [Change] Fix communication method of {{ link_ad_api('/api/vehicle/status') }}
- [Change] Add options to [the routing API](./features/routing.md)
- [Change] Add restrictions to {{ link_ad_api('/api/routing/clear_route') }}
- [Change] Add restrictions to {{ link_ad_api('/api/vehicle/doors/command') }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ used:
# https://autowarefoundation.github.io/autoware-documentation/main/design/autoware-interfaces/ad-api/features/routing/

bool allow_goal_modification
bool allow_while_using_route
```

{% endblock %}
1 change: 0 additions & 1 deletion yaml/autoware-interfaces.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ types:
autoware_adapi_v1_msgs/msg/RouteOption:
msg:
allow_goal_modification: bool
allow_while_using_route: bool
autoware_adapi_v1_msgs/msg/RoutePrimitive:
msg:
id: int64
Expand Down
Loading