Skip to content
Snippets Groups Projects
Commit f842520b authored by Olivier Stasse's avatar Olivier Stasse Committed by olivier stasse
Browse files

[python] Remove hard-coded timeStep and get it from Device

Related to PR #75 on sot-core
parent d36c4904
No related branches found
No related tags found
No related merge requests found
......@@ -144,10 +144,6 @@ class AbstractHumanoidRobot (object):
'device': ['zmp', 'control', 'state']
}
"""
Robot timestep
"""
self.timeStep = 0.005
def help (self):
print (AbstractHumanoidRobot.__doc__)
......@@ -238,6 +234,10 @@ class AbstractHumanoidRobot (object):
if not self.device:
self.device = RobotSimu(self.name + '_device')
"""
Robot timestep
"""
self.timeStep = self.device.getTimeStep()
# Freeflyer reference frame should be the same as global
# frame so that operational point positions correspond to
......
......@@ -172,5 +172,4 @@ if 'argv' in sys.__dict__:
raise RuntimeError (
"invalid robot name (should by Hrp2Laas or Hrp2Jrl)")
robot = robots[options.robot]("robot")
timeStep = .005
solver = Solver(robot)
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