Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 3 additions & 11 deletions atlas/src/main/java/us/ihmc/atlas/AtlasRobotModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,9 @@ private FullHumanoidRobotModel doArmJointRestriction(FullHumanoidRobotModel full
}
else
{
System.out.println(this.getClass().getName() + ", createFullRobotModel(): range not large enough to reduce for side="
+ robotSide.getLowerCaseName() + " joint=" + armJointName.getCamelCaseNameForStartOfExpression());
System.out.println(
this.getClass().getName() + ", createFullRobotModel(): range not large enough to reduce for side=" + robotSide.getLowerCaseName()
+ " joint=" + armJointName.getCamelCaseNameForStartOfExpression());
}
}
}
Expand Down Expand Up @@ -465,15 +466,6 @@ public double getControllerDT()
return CONTROL_DT;
}

@Override
public double getWholeBodyControllerCoreDT()
{
//TODO This is temporaly return values.
// We should figure out the atlas simulation really doesn't need this and then tweak the override structure.
// This is only called in the Nadia and Alexander later.
return 0.0;
}

@Override
public RobotROSClockCalculator getROSClockCalculator()
{
Expand Down
Loading