Description
Pre-requirement of #648
If you have a look for example at:
https://github.com/ros-controls/ros2_controllers/blob/master/ackermann_steering_controller/test/ackermann_steering_controller_params.yaml
you can see that front_wheels_names
and rear_wheels_names
in fact might refer (depending on situation) to either a traction actuator or a steering actuator.
Here:
a distinction is then made depending on
front_steering
param (and linked to #648, I should introduce here somehow all_wheel_drive
parameter).
It feels to me that otherwise introducing additional implicit conventions in combination of new flags / number of passed joints and their interpretation as wheels or steers will complicate even more the steering_controller
package...
Semantically, we have no enforcement at configuration level of what is "wheel" and what is "steer". I propose to add front_steer_names
and rear_steer_names
, and refactor the code in support of both #648 and #526 (which I am also involved in).