-
Notifications
You must be signed in to change notification settings - Fork 326
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 the notino of front or rear wheel radius is also removed from dependant controllers and the library has know "wheels" and "steers" joints. Signed-off-by: Quique Llorente <[email protected]>
- Loading branch information
Showing
28 changed files
with
280 additions
and
346 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] | ||
wheels_names: [pid_controller/rear_right_wheel_joint, pid_controller/rear_left_wheel_joint] | ||
steers_names: [pid_controller/front_right_steering_joint, pid_controller/front_left_steering_joint] | ||
wheels_state_names: [rear_right_wheel_joint, rear_left_wheel_joint] | ||
steers_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
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
12 changes: 5 additions & 7 deletions
12
bicycle_steering_controller/test/bicycle_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,15 +1,13 @@ | ||
test_bicycle_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_wheel_joint] | ||
front_wheels_names: [pid_controller/steering_axis_joint] | ||
rear_wheels_state_names: [rear_wheel_joint] | ||
front_wheels_state_names: [steering_axis_joint] | ||
wheels_names: [pid_controller/rear_wheel_joint] | ||
steers_names: [pid_controller/steering_axis_joint] | ||
wheels_state_names: [rear_wheel_joint] | ||
steers_state_names: [steering_axis_joint] | ||
|
||
wheelbase: 3.24644 | ||
front_wheel_radius: 0.45 | ||
rear_wheel_radius: 0.45 | ||
traction_wheel_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
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.