11# The base amount of time (in milliseconds) for one step.
2- base_step_duration = 225
2+ base_step_duration = 240
33
44# Duration modifiers (in seconds) for a single step.
55# Modifies `base_step_duration` by adding (modifier * movement factor) seconds per step.
@@ -16,7 +16,7 @@ stopping_step_duration = 250
1616# This value is normalized relative to the planned step duration. For example,
1717# a value of `0.75` means the current step duration must be at least 75% of the
1818# planned step duration before a foot switch can occur.
19- minimum_step_duration_ratio = 0.75
19+ minimum_step_duration_ratio = 0.70
2020
2121# The offset of the torso w.r.t. the hips in meters.
2222#
@@ -48,7 +48,7 @@ arm_stiffness = 0.6
4848
4949# The base amount to lift the feet in swing phase, in metres.
5050# The foot lift is increased slightly, based on the forward and left in the command.
51- base_foot_lift = 0.005
51+ base_foot_lift = 0.007
5252
5353# The multiplier for each component of a step command to adjust the foot lift.
5454# These values are multiplied by their respective component of the step command
@@ -68,7 +68,7 @@ stopping_foot_lift = 0.01
6868max_acceleration = { forward = 0.01 , left = 0.05 , turn = 0.3 }
6969
7070# The step size is clipped to this value; in both directions (e.g. range for forward is -max_step_size to max_step_size).
71- max_step_size = { forward = 0.055 , left = 0.05 , turn = 0.7 }
71+ max_step_size = { forward = 0.06 , left = 0.06 , turn = 0.7 }
7272
7373
7474[hip_height ]
@@ -99,7 +99,7 @@ arm_swing_multiplier = 0.6
9999#
100100# Higher values mean that the filtered gyroscope value responds to changes quicker,
101101# and lower values mean that it responds slower.
102- gyro_lpf_alpha = 0.6
102+ gyro_lpf_alpha = 0.7
103103
104104# The weight of the balance adjustment based on the y gyroscope value.
105105# Increasing this value will use a larger portion of the filtered gyro value
0 commit comments