-
Notifications
You must be signed in to change notification settings - Fork 374
Add AckermannDriveStamped control to steering library #1563
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
Open
wittenator
wants to merge
40
commits into
ros-controls:master
Choose a base branch
from
wittenator:master
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 34 commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
768ef15
Add additional tests
wittenator e22df84
Merge branch 'ros-controls:master' into master
wittenator 36bc9d5
Remove twist_input from closed loop odometry calculation
wittenator 94eebd0
Merge branch 'ros-controls:master' into master
wittenator c0f103e
Add in missing test case
wittenator 0564ada
Merge branch 'master' of github.com:wittenator/ros2_controllers
wittenator eaebf09
Fixed comment
wittenator 3e84edd
Update on ackermann message
wittenator 4f14831
Merge branch 'master' into master
wittenator e20e63c
Merge branch 'master' into master
wittenator 031ddc6
Merge branch 'master' into master
christophfroehlich 7564e34
Merge branch 'master' into master
wittenator 0c3ded5
Fix reference name
wittenator a15dc7f
Merge branch 'master' of github.com:wittenator/ros2_controllers
wittenator 66effcf
Merge branch 'ros-controls:master' into master
wittenator d204e7e
Fix typo
wittenator 948b67c
Merge branch 'master' of github.com:wittenator/ros2_controllers
wittenator c612f3c
Fix tests
wittenator 915e3bd
Fix exported interfaces tests
wittenator b038514
Add comment
wittenator b79d682
Ran precommit hooks
wittenator f9f2459
Fix all pre-commit checks
wittenator 3782090
Update function description
wittenator aae242d
Merge branch 'ros-controls:master' into master
wittenator abbe4fd
Fix missed readability issue
wittenator fc881c2
Merge branch 'master' of github.com:wittenator/ros2_controllers
wittenator 5a6e60e
Switch from double to float for drive messages in tests
wittenator ed3ef21
Explicitly cast default parameters to float
wittenator 8b65ff9
Merge branch 'ros-controls:master' into master
wittenator 976935a
Merge branch 'master' into master
wittenator bb27729
Fixed tests again
wittenator b42d13a
Merge branch 'ros-controls:master' into master
wittenator c367db2
Merge branch 'master' into master
wittenator 3436bb0
Merge branch 'master' into master
wittenator 8d9cc8e
Merge branch 'ros-controls:master' into master
wittenator 8a60aa3
Renamed message naming
wittenator f159c60
Merge remote-tracking branch 'origin/master' into wittenator/master
christophfroehlich 1fd197c
Merge branch 'ros-controls:master' into master
wittenator 9c8bb76
Rename various tests and variables
wittenator f150a9b
Merge commit
wittenator 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
I have a question: If we only use speed and steering_angle, is it a good idea to use the full blown ackermann_msg definition? Furthermore, I am reluctant using a message type called ackermann_msg, even if the robot has no ackermann kinematics. Is there a reason for that, for example an upstream package which publishes in this format? Otherwise, I'd suggest to add a new message similar to this to control_msgs repository.
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 mainly used this message since it was already present prior to the removal of the message publisher of this type in the initial draft of this PR. I initially also thought that it may be good to have some cross-compatibility, but I am not aware of big projects that use this message atm. So I don't have any hard feelings on using a custom message for this. How would you call it instead?
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.
A good question 😁 Maybe simply
SteeringControllerCommand
? In accordance with https://github.com/ros-controls/control_msgs/blob/master/control_msgs/msg/SteeringControllerStatus.msgThere 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.
Good idea, I created a PR: ros-controls/control_msgs#217