diff --git a/devices/JointTorqueControlDevice/include/BipedalLocomotion/JointTorqueControlDevice.h b/devices/JointTorqueControlDevice/include/BipedalLocomotion/JointTorqueControlDevice.h index 05a597f4ba..c6eec90641 100644 --- a/devices/JointTorqueControlDevice/include/BipedalLocomotion/JointTorqueControlDevice.h +++ b/devices/JointTorqueControlDevice/include/BipedalLocomotion/JointTorqueControlDevice.h @@ -140,7 +140,6 @@ class BipedalLocomotion::JointTorqueControlDevice std::vector coulombViscousStribeckParameters; std::vector> frictionEstimators; std::mutex mutexTorqueControlParam_; // The mutex for protecting the parameters - yarp::sig::Vector desiredJointTorques; yarp::sig::Vector desiredMotorCurrents; yarp::sig::Vector measuredJointVelocities; diff --git a/devices/JointTorqueControlDevice/include/BipedalLocomotion/PINNFrictionEstimator.h b/devices/JointTorqueControlDevice/include/BipedalLocomotion/PINNFrictionEstimator.h index aa8ff4f3b7..67d67dbfbd 100644 --- a/devices/JointTorqueControlDevice/include/BipedalLocomotion/PINNFrictionEstimator.h +++ b/devices/JointTorqueControlDevice/include/BipedalLocomotion/PINNFrictionEstimator.h @@ -31,7 +31,6 @@ class PINNFrictionEstimator * @param[in] modelPath a string representing the path to the ONNX model * @param[in] intraOpNumThreads a std::size_t representing the number of threads to be used for intra-op parallelism * @param[in] interOpNumThreads a std::size_t representing the number of threads to be used for inter-op parallelism - * * @return true if the initialization is successful, false otherwise */ bool initialize(const std::string& modelPath, @@ -51,7 +50,6 @@ class PINNFrictionEstimator * @param[in] inputDeltaPosition a double representing difference between the joint position and the motor position motor side (rad) * @param[in] inputJointVelocity a double representing the joint velocity (rad/sec) * @param[out] output a double representing the joint friction torque - * * @return true if the estimation is successful, false otherwise */ bool estimate(double inputDeltaPosition, double inputJointVelocity, double& output);