-
Notifications
You must be signed in to change notification settings - Fork 297
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
Implemented action bridge #256
Open
hsd-dev
wants to merge
43
commits into
ros2:master
Choose a base branch
from
hsd-dev:action_bridge
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
688768b
added action templates
hsd-dev 5bbc928
generate action interface mappings
hsd-dev d4fc03e
added action factories
hsd-dev d833d8c
added action_bridge executable
hsd-dev 629697e
fix template
hsd-dev 1539a30
hack for GripperCommand
hsd-dev 5d96c75
Update include/ros1_bridge/action_factory.hpp
hsd-dev e265f37
Fix python script errors in action generation
2d51958
Foxy and later action compatibility
0040380
Reorder ros node initialization to allow renaming of bridge
580ad9e
fix error during rebase
hsd-dev 33b8bce
updated deprecated GoalResponseCallback signature
hsd-dev 3d8dee1
Update resource/interface_factories.cpp.em
hsd-dev 1091806
applied uncrustify patches
hsd-dev 74188ff
fix action mapping rules
hsd-dev 5cd1321
print available action pairs
hsd-dev 3c3fe17
get active ROS1 action servers and clients
hsd-dev 0210c17
remove prints
hsd-dev b256b9f
fix mapping rules for services
hsd-dev aafcf3a
reformatted with uncrustify
hsd-dev 9c83a93
map actions in dynamic_bridge
hsd-dev bc350f4
shutdown internal server before removing the bridge
hsd-dev deb5805
updated GoalResponseCallback signature
hsd-dev 69c815b
updated README
hsd-dev 1f600e0
fix formatting
hsd-dev 1dd38b3
add actionlib dependency with condition
hsd-dev a5eb300
added dependency on rclcpp_action
hsd-dev 91b3197
Update CMakeLists.txt
hsd-dev 51ac119
Update README.md
hsd-dev 94404b0
Update include/ros1_bridge/action_factory.hpp
hsd-dev d7fdc6d
Update resource/get_factory.cpp.em
hsd-dev c071edf
Update ros1_bridge/__init__.py
hsd-dev be56382
Update src/action_bridge.cpp
hsd-dev 94b9c70
risk leaking if the reset call crashes somehow
hsd-dev 21bee28
Add goal ID to log output so it's more useful
hsd-dev 7ba2784
rename variable so it's distinction from the variable with the same n…
hsd-dev 084ed7f
Change cout to use RCLCPP logging macros.
hsd-dev 86a8140
remove commented out code
hsd-dev 12838b9
fix parenthesis
hsd-dev 6b10de4
remove unused params
hsd-dev 514f53d
fix nullptr keyword
hsd-dev 5e3c841
remove outdated comments
hsd-dev 79a46de
pass logger to GoalHandler
hsd-dev 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
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.
Since
_(Request|Response)$
are explicitly being skipped I would expect something similar to be necessary for the parts of actions?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.
I was expecting the same, but it doesn't generate
_Goal
,_Feedback
,_Result
, so I skipped it.