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 (backport to melodic)#1111
Merged
scpeters merged 1 commit intoros-simulation:melodic-develfrom Aug 8, 2020
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.
|
Both the issue and this fix have been replicated. Behavior before this fix:
Behavior with this fix:
|
Member
Author
|
I've created #1126 that targets this to noetic-devel. We will merge that first and then revisit this as a backport to melodic if all is well. |
Member
Author
|
I just merged #1126 to noetic |
scpeters
added a commit
to scpeters/gazebo_ros_pkgs
that referenced
this pull request
Jul 14, 2020
Similar to the change in ros-simulation#1111, moves the WheelSlipPlugin::Load call before the parameter callback so that the values from SDF/URDF are set first. Then the callback is changed to ignore negative values, and the default slip parameter values are set to -1, so that the SDF/URDF values are still preferred unless a different parameter value is specified in a launch file.
jacobperron
approved these changes
Aug 7, 2020
scpeters
added a commit
that referenced
this pull request
Aug 13, 2020
Initial port of gazebo_ros_wheel_slip_plugin to ros2. It includes a similar change to #1111, which moved the WheelSlipPlugin::Load call before the parameter callback so that the values from SDF/URDF are set first. Then the callback is changed to ignore negative values, and the default slip parameter values are set to -1, so that the SDF/URDF values are still preferred unless a different parameter value is specified in a launch file. Signed-off-by: Steve Peters <scpeters@openrobotics.org>
scpeters
added a commit
to scpeters/gazebo_ros_pkgs
that referenced
this pull request
Aug 13, 2020
Initial port of gazebo_ros_wheel_slip_plugin to ros2. It includes a similar change to ros-simulation#1111, which moved the WheelSlipPlugin::Load call before the parameter callback so that the values from SDF/URDF are set first. Then the callback is changed to ignore negative values, and the default slip parameter values are set to -1, so that the SDF/URDF values are still preferred unless a different parameter value is specified in a launch file. Signed-off-by: Steve Peters <scpeters@openrobotics.org>
scpeters
added a commit
that referenced
this pull request
Aug 17, 2020
Forward port of wheel slip plugin from eloquent (#1099) to foxy. It includes a similar change to #1111, which moved the WheelSlipPlugin::Load call before the parameter callback so that the values from SDF/URDF are set first. Then the callback is changed to ignore negative values, and the default slip parameter values are set to -1, so that the SDF/URDF values are still preferred unless a different parameter value is specified in a launch file. Signed-off-by: Steve Peters <scpeters@openrobotics.org> Co-authored-by: Jacob Perron <jacob@openrobotics.org>
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.
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.cc @Maxx84