-
Notifications
You must be signed in to change notification settings - Fork 12
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
fix attaching both IMU and FTs as MAS network wrappers #167
Conversation
@@ -1740,6 +1744,7 @@ bool WholeBodyDynamicsDevice::attachAllFTs(const PolyDriverList& p) | |||
return false; | |||
} | |||
|
|||
yDebug() << "Elobaid: remappedMASInterfaces= " << remappedMASInterfaces.ftMultiSensors->getNrOfSixAxisForceTorqueSensors(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably this can be deleted?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah yes!, done in fca9e18
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just small comment.
For the CI you can see robotology/idyntree-yarp-tools#42 . |
Thanks for the info, I'll do it in a new PR to keep it organized! |
From recent tests with real robots ( While attaching directly the FT devices |
This is a part of the investigation we are doing with @mebbaid using
ergoCubGazeboV1
icub-tech-iit/ergocub-software#35We couldn't attach both the IMU and the FTs as MAS.
With the previous logic before this PR, the software doesn't distinguish between them. As it seems both devices types implement all the MAS interfaces, including the interfaces
ISixAxisForceTorqueSensors
andIThreeAxisLinearAccelerometers
.