You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It works on 1.1.6. /cmd_vel_smoothed.linear.x ramps up to full speed (0.5 in this case).
Actual behavior
On 1.1.8. /cmd_vel_smoothed.linear.x stays at 0 forever.
Additional information
I believe this was broken in 1.1.7 because the last_cmd_ is set after the deadband velocities are applied. This means that the last_cmd is clamped to 0 forever.
Bug report
Required Info:
Steps to reproduce issue
In a separate terminal:
In a separate terminal:
Expected behavior
It works on 1.1.6.
/cmd_vel_smoothed.linear.x
ramps up to full speed (0.5 in this case).Actual behavior
On 1.1.8.
/cmd_vel_smoothed.linear.x
stays at 0 forever.Additional information
I believe this was broken in 1.1.7 because the
last_cmd_
is set after the deadband velocities are applied. This means that the last_cmd is clamped to 0 forever.https://github.com/ros-planning/navigation2/blob/da5edbfd12efd0ba74cd6bb6bc8c8ad8ca9bd88a/nav2_velocity_smoother/src/velocity_smoother.cpp#L308
Workaround is to disable deadband_velocity.
Also, I think this only affects open loop mode.
The text was updated successfully, but these errors were encountered: