-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove front_steering from steering library
To Accommodate controllers that are not only steering at front or rear this change remove the `front_steering` variable from steering_controller_library, as a byproduct of that the notion of front or rear wheel radius is also removed from dependant controllers and the library has know "traction_joints_names" and "steering_joints_names" instead of "front_wheels_names" and "rear_wheels_names". Signed-off-by: Quique Llorente <[email protected]>
- Loading branch information
Showing
28 changed files
with
331 additions
and
368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 6 additions & 9 deletions
15
ackermann_steering_controller/test/ackermann_steering_controller_preceeding_params.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
test_ackermann_steering_controller: | ||
ros__parameters: | ||
reference_timeout: 2.0 | ||
front_steering: true | ||
open_loop: false | ||
velocity_rolling_window_size: 10 | ||
position_feedback: false | ||
rear_wheels_names: [pid_controller/rear_right_wheel_joint, pid_controller/rear_left_wheel_joint] | ||
front_wheels_names: [pid_controller/front_right_steering_joint, pid_controller/front_left_steering_joint] | ||
rear_wheels_state_names: [rear_right_wheel_joint, rear_left_wheel_joint] | ||
front_wheels_state_names: [front_right_steering_joint, front_left_steering_joint] | ||
traction_joints_names: [pid_controller/rear_right_wheel_joint, pid_controller/rear_left_wheel_joint] | ||
steering_joints_names: [pid_controller/front_right_steering_joint, pid_controller/front_left_steering_joint] | ||
traction_joints_state_names: [rear_right_wheel_joint, rear_left_wheel_joint] | ||
steering_joints_state_names: [front_right_steering_joint, front_left_steering_joint] | ||
wheelbase: 3.24644 | ||
front_wheel_track: 2.12321 | ||
rear_wheel_track: 1.76868 | ||
front_wheels_radius: 0.45 | ||
rear_wheels_radius: 0.45 | ||
traction_wheel_track: 1.76868 | ||
traction_wheels_radius: 0.45 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.