ros-controls / ros_controllers

Generic robotic controllers to accompany ros_control
http://wiki.ros.org/ros_control
BSD 3-Clause "New" or "Revised" License
571 stars 525 forks source link

Add service to reset odometry #564

Open alcantara09 opened 3 years ago

alcantara09 commented 3 years ago

Why: The odometry state relies on the assumption that the node that implements the controller_manager interface has the same life cycle as it. In other words is assumes that the internal state is zero and any incoming messages are due robot movement. However this is not true when restarting the nodes but not the actual physical system. In this case the first reading of encoder position will be the current encoder position of the controller, what will be interpreted as being a valid input and will generate a spike in velocity, moving the internal state to a position far way from the origin.

How: This PR exposes a service to reset the odometry state of the diff_drive_controller. This allow us to reset the odometry in cases when you have to restart your system, but the actual controller is not resetted. To overcome the initialization issue, the first reading of the controller will also be considered as an offset. This also ensures that no jump will occur when resetting the odometry state.

bmagyar commented 3 years ago

I have two points:

Additionally: services are generally not preferred for any deployment where you want to record/monitor the behaviour of the system.

caioaamaral commented 2 years ago

friendly ping, would be nice having this feature on melodic

bmagyar commented 2 years ago

@alcantara09 @caioaamaral I'd be happy to merge this to Noetic provided that there are some responses to the questions we asked.

alcantara09 commented 2 years ago

Hi @bmagyar, I believe I pushed your requested changes, however I forgot to ping you =)

nblkStudy commented 8 months ago

I want to know if this "reset odom" method is feasible. How should I use it to solve the problem? Can it be used on the Husky robot with Melodic?