Skip to content
Snippets Groups Projects
Commit d18df6aa authored by Francois Keith's avatar Francois Keith
Browse files

Correct bug introduced in 846be4ab.

The symptoms only appear when walking and turning.
After a turn on the stop, the robot may start turning
in the other direction (even when asking for a straight walk).
parent f08087ea
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ OrientationsPreview::OrientationsPreview( CjrlHumanoidDynamicRobot *aHS)
// left hip
CjrlJoint * leftFoot = aHS->leftFoot()->associatedAnkle();
CjrlJoint * leftHip = aHS->jointsBetween(*waist, *leftFoot)[0];
CjrlJoint * leftHip = aHS->jointsBetween(*waist, *leftFoot)[1];
lLimitLeftHipYaw_ = leftHip->lowerBound(0);//-30.0/180.0*M_PI;
uLimitLeftHipYaw_ = leftHip->upperBound(0);//45.0/180.0*M_PI;
......@@ -55,7 +55,7 @@ OrientationsPreview::OrientationsPreview( CjrlHumanoidDynamicRobot *aHS)
// right hip
CjrlJoint * rightFoot = aHS->rightFoot()->associatedAnkle();
CjrlJoint * rightHip = aHS->jointsBetween(*waist, *rightFoot)[0];
CjrlJoint * rightHip = aHS->jointsBetween(*waist, *rightFoot)[1];
lLimitRightHipYaw_ = rightHip->lowerBound(0);//-45.0/180.0*M_PI;
uLimitRightHipYaw_ = rightHip->upperBound(0);//30.0/180.0*M_PI;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment