Skip to content

Commit 2febea2

Browse files
authored
Fix: W200 Diff Drive Parameters (#228)
* Disable using position for odom * Lower acceleration to reasonable values
1 parent 81302d9 commit 2febea2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

clearpath_control/config/w200/control.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ platform_velocity_controller:
3939
preserve_turning_radius: true
4040

4141
# W200 motor controllers only report velocity
42-
# position_feedback: false
42+
position_feedback: false
4343

4444
# Publish limited velocity
4545
publish_limited_velocity: true
@@ -51,14 +51,14 @@ platform_velocity_controller:
5151
# Whenever a min_* is unspecified, default to -max_*
5252
linear.x.max_velocity: 5.0
5353
linear.x.min_velocity: -5.0
54-
linear.x.max_acceleration: 50.0
55-
linear.x.max_deceleration: -50.0
54+
linear.x.max_acceleration: 2.5
55+
linear.x.max_deceleration: -2.5
5656
linear.x.max_jerk: .NAN
5757
linear.x.min_jerk: .NAN
5858

5959
angular.z.max_velocity: 4.0
6060
angular.z.min_velocity: -4.0
61-
angular.z.max_acceleration: 40.0
62-
angular.z.max_deceleration: -40.0
61+
angular.z.max_acceleration: 2.0
62+
angular.z.max_deceleration: -2.0
6363
angular.z.max_jerk: .NAN
6464
angular.z.min_jerk: .NAN

0 commit comments

Comments
 (0)