This repository was archived by the owner on Jul 10, 2025. It is now read-only.
gazebo_ros_wheel_slip: support parameters specified in launch file#1126
Merged
scpeters merged 1 commit intoros-simulation:noetic-develfrom Jun 24, 2020
Merged
Conversation
The WheelSlipPlugin already has default values for the slip compliance parameters, so ignore the default values set in WheelSlip.cfg by making them negative and instruct the callback to ignore negative values. Also, ignore the `level` variable in callback so that parameters set in launch file will not be ignored.
Member
Author
|
one unrelated test failure; it's probably flaky |
cohen39
pushed a commit
to cohen39/gazebo_ros_pkgs
that referenced
this pull request
Nov 15, 2021
The WheelSlipPlugin already has default values for the slip compliance parameters, so ignore the default values set in WheelSlip.cfg by making them negative and instruct the callback to ignore negative values. Also, ignore the `level` variable in callback so that parameters set in launch file will not be ignored.
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This re-targets #1111 to noetic.
The
gazebo_ros_wheel_slipplugin currently ignores slip compliance values specified in a launch file due to the check of thelevelparameter added in 3cf9f5e, which ensures that parameter values specified in the urdf / sdf xml parameters are not over-ridden by the default values specified in the.cfgfile. In order to respect the values set in launch files but ignore the defaults in the.cfgfile, change the.cfgdefault values to-1and adjust the callback to ignore negative values. This is fine because gazebo's WheelSlipPlugin already has default values for the slip compliance parameters, so the.cfgdefaults are extraneous.This also reverts 3cf9f5e so that the
levelparameter is ignored again.See also the comment by @Maxx84 on #1111: #1111 (comment)