Open alcantara09 opened 3 years ago
I have two points:
first_data
is unclear when you first read it. Using something more specific, such as odometry_reset
would be desirable.Additionally: services are generally not preferred for any deployment where you want to record/monitor the behaviour of the system.
friendly ping, would be nice having this feature on melodic
@alcantara09 @caioaamaral I'd be happy to merge this to Noetic provided that there are some responses to the questions we asked.
Hi @bmagyar, I believe I pushed your requested changes, however I forgot to ping you =)
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?
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.