-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ergoCubSN000] added missing joints param #503
Conversation
What was the error? If |
The error is exactly the missing The XSD schema used to run the verification at the moment is not general enough to catch this peculiarity and it's also difficult to enhance it as we don't use XML as it ought to be used, unfortunately. I saw that robots-configuration/ergoCubSN000/wrappers/motorControl/left_arm-mc_remapper.xml Lines 5 to 6 in f819481
As of now, I need it to make the XML validation run flawlessly, even if it's not required. |
cc @Nicogene |
Ah, ok, so the source of the check is
|
A nitpick (that should not be a big problem as the value is actually ignored), probably it should be 45 as the original one (before removing the joint) was 46 (see https://github.com/robotology/robots-configuration/pull/502/files#diff-6dfa09278879a57fda38fbadef41b069ec9b0f5d0b9d111290eba6e1d2492813L13 )? |
Counting them manually, it came out 44. |
Indeed, it seems that was wrong before, as the number of joints were 4+13+13+3+6+6 = 45 . |
This PR fixes #502 adding missing
joints
param.The CI didn't catch it as it was running based on
pull_request_target
event (to fetch an env var). Previously fixed it via f819481.