-
Notifications
You must be signed in to change notification settings - Fork 682
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(default_ad_api): change to read topic by polling #7400
Closed
shtokuda
wants to merge
24
commits into
autowarefoundation:main
from
shtokuda:feat/use-polling-subscriber-default_ad_api
Closed
Changes from 20 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
0fc6d40
add interface_subscriber.hpp in default_ad_api
shtokuda 9364d39
use polling subscriber
shtokuda d21d391
Merge branch 'main' into feat/use-polling-subscriber-default_ad_api
shtokuda c00a9ff
remove unused callback function from vehicle in default_ad_api
shtokuda 39b8e4e
use polling subscriber in planning of default_ad_api
shtokuda aa8a63b
use polling subscriber in routing of default_ad_api
shtokuda e58c4a1
use polling subscriber in autoware_state of default_ad_api
shtokuda 8325ec1
use polling subscriber in motion of default_ad_api
shtokuda 402aee4
Merge branch 'main' into feat/use-polling-subscriber-default_ad_api
shtokuda 8acb189
Merge branch 'main' into feat/use-polling-subscriber-default_ad_api
shtokuda 32212ee
style(pre-commit): autofix
pre-commit-ci[bot] 804f159
remove unused callback function from planning in default_ad_api
shtokuda 8cda9fe
style(pre-commit): autofix
pre-commit-ci[bot] 709c820
resolve merge conflicts in planning.cpp
shtokuda f5b724a
Merge branch 'feat/use-polling-subscriber-default_ad_api' of github.c…
shtokuda f4a3661
add missing closing parenthesis in planning.cpp
shtokuda f692c78
remove unused callback function from some packages in default_ad_api
shtokuda 90a85f9
remove second occurrence of function call for takeData
shtokuda 0178b5e
add missing <memory> includes
shtokuda 9a9311c
Merge branch 'main' into feat/use-polling-subscriber-default_ad_api
shtokuda b9adb4c
update system/default_ad_api/src/routing.hpp
shtokuda 36270e9
update system/default_ad_api/src/routing.hpp
shtokuda b56f589
update system/default_ad_api/src/vehicle.hpp
shtokuda c2e6e5f
Revert "Merge branch 'feat/use-polling-subscriber-default_ad_api' of …
shtokuda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you intend to execute them if
(trajectory_ && kinematic_state_)
which originally executed regardless oftrajectory_
andkinematic_state_
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apologies for any confusion. I misunderstood that published topics in
on_timer
are related to subscribed topics directly. I will revert to the original implementation.