-
Notifications
You must be signed in to change notification settings - Fork 0
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
Remove deprecated YARP control-board interface methods #16
Comments
😱😱😱 |
These were no longer called by controlboardwrapper2 anyway. roboticslab-uc3m/questions-and-answers#16
There is a setVelocityMode() left at the skymegabot plugin, but it has no implementation anyway and won't result in compilaation issues. roboticslab-uc3m/questions-and-answers#16
Scheduled for removal at YARP 2.3.70, see: roboticslab-uc3m/questions-and-answers#16
I'm wondering what happened to |
Looks like a pretty old issue asking for an It would be good for us to recover the method, because it's what we use for the Technosoft IPos driver |
Note to myself: start thinking about dropping old |
Example: roboticslab-uc3m/yarp-devices@3c4e80a. |
All done but a few deprecated commands used in manip-waiter/programs/manipWaiterExecManip/InCvPort.cpp. I was told not to bother with this (@jgvictores). |
Confirming that
|
Reminder to self: check with @jmgarciah before anything breaks on https://github.com/roboticslab-uc3m/manip-waiter |
Several long-time deprecated methods will get deleted with the next YARP release (2.3.70). Some of these include (current deprecation list):
yarp::dev::IPositionControl::setPositionMode()
yarp::dev::IPositionControlRaw::setPositionModeRaw()
yarp::dev::IPositionDirect::setPositionDirectMode()
yarp::dev::IPositionDirectRaw::setPositionDirectModeRaw()
yarp::dev::ITorqueControl::setTorqueMode()
yarp::dev::ITorqueControlRaw::setTorqueModeRaw()
yarp::dev::IVelocityControl::setVelocityMode()
yarp::dev::IVelocityControlRaw::setVelocityModeRaw()
Said methods were migrated upstream to the
yarp::dev::IControlMode
interface (docs). Apart from that, theyarp::dev::IOpenLoopControl
interface and its companionyarp::dev::IOpenLoopControlRaw
have been removed at robotology/yarp@73c65b2. Affected repositories:manip-waiter(see comments)The text was updated successfully, but these errors were encountered: