Skip to content

Commit

Permalink
[hrpsys_config.py] start stabilizer after auto-balancer in startDefau…
Browse files Browse the repository at this point in the history
…ltUnstableControllers
  • Loading branch information
eisoku9618 committed Dec 26, 2015
1 parent e12ba01 commit 822d14a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/hrpsys_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1997,7 +1997,6 @@ def startDefaultUnstableControllers (self, ic_limbs=["rarm", "larm"], abc_limbs=
Start default unstable RTCs controller mode.
Currently Stabilzier, AutoBalancer, and ImpedanceController are started.
'''
self.startStabilizer()
for limb in ic_limbs:
self.ic_svc.startImpedanceControllerNoWait(limb)
if abc_limbs==None:
Expand All @@ -2006,6 +2005,7 @@ def startDefaultUnstableControllers (self, ic_limbs=["rarm", "larm"], abc_limbs=
else:
abc_limbs=["rleg", "lleg"]
self.startAutoBalancer(abc_limbs)
self.startStabilizer()
for limb in ic_limbs:
self.ic_svc.waitImpedanceControllerTransition(limb)

Expand Down

0 comments on commit 822d14a

Please sign in to comment.