15 lines
229 B
Python
15 lines
229 B
Python
def robot_recover():
|
|
"""
|
|
"""
|
|
print "robot_recover"
|
|
|
|
#Initial checks
|
|
robot.assert_no_task()
|
|
robot.reset_motion()
|
|
robot.wait_ready()
|
|
|
|
#Enabling
|
|
enable_motion()
|
|
|
|
robot.robot_recover()
|