Fix open-loop odometry using unbounded commands by applying SpeedLimiter first#2260
Merged
christophfroehlich merged 4 commits intoros-controls:masterfrom Apr 2, 2026
Merged
Conversation
christophfroehlich
requested changes
Mar 29, 2026
Member
christophfroehlich
left a comment
There was a problem hiding this comment.
Please cleanup this PR and don't commit your vscode folder.
Contributor
Author
|
@christophfroehlich I have cleaned up the PR are there any other change required? |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #2260 +/- ##
=======================================
Coverage 84.68% 84.68%
=======================================
Files 153 153
Lines 15318 15318
Branches 1332 1332
=======================================
Hits 12972 12972
Misses 1858 1858
Partials 488 488
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
Member
christophfroehlich
left a comment
There was a problem hiding this comment.
Thank you, this fixes the mentioned issue. Just a nitpick comment, let's sort that to very top.
mergify bot
pushed a commit
that referenced
this pull request
Apr 2, 2026
(cherry picked from commit 7c64f3a)
mergify bot
pushed a commit
that referenced
this pull request
Apr 2, 2026
(cherry picked from commit 7c64f3a)
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Open-loop odometry was using raw velocity commands before SpeedLimiter,
causing it to integrate unbounded inputs.
Moved limiter application before odometry update so try_update_open_loop()
uses limited commands, aligning odometry with actual motion.
Fixes: #2250