Skip to content

Commit

Permalink
Don't reset the smoother_ every time
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyZe committed Oct 22, 2023
1 parent 6f27291 commit 055dbc0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion moveit_ros/moveit_servo/src/servo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,6 @@ KinematicState Servo::getNextJointState(const ServoInput& command)
// Update filter state and apply filtering in position domain
if (smoother_)
{
smoother_->reset(current_state.positions, current_state.velocities, current_state.accelerations);
smoother_->doSmoothing(target_state.positions, target_state.velocities, target_state.accelerations);
}

Expand Down

0 comments on commit 055dbc0

Please sign in to comment.