cannot launch the wholebodydynamics
and gravitycompensator
when doing the redball demo
#661
Answered
by
pattacini
Yujia-Zhang0913
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
pattacini
Oct 27, 2023
Replies: 1 comment 5 replies
-
From the screenshot you shared is somewhat difficult to figure out what the problem is. Also, to help us narrow down this snag, could you tell us the following?
You may easily find this information by ssh-ing into echo $YARP_ROBOT_NAME
cd $ROBOT_CODE
cd robotology-superbuild
git status and reporting here the output. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Yujia-Zhang0913
The problem is that the inertial device is disabled on your robot.
See https://github.com/robotology/robots-configuration/blob/master/iCubSingapore01/icub_all.xml#L52-L56.
We made this choice because we no longer support old devices like the one mounted on the iCubSingapore01 head. The most recent iCub robots sport the RFE board for which our SW works nicely.
No worries though. You can uncomment those lines reported above to reinstate the inertial device with the caveat that the first cold start of the
yarprobotinterface
won't work. You'll need to launchyarprobotinterface
twice in a row, indeed. A bit annoying but doable.cc'ing @AntonioConsilvio @sgiraz for this.
To …