-
We all know that velocity commands are integrated by the Whenever a
Is there any third one? I'm a bit concerned about hypothesis 1: because of a poorly tuned I hope the implementation resorts to 2, indeed. Second questionDoes the joints subset version of the |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
BackstageI'm asking this because while teleoperating the iCub I've realized that the fingers - which are controlled in velocity and whose control is a bit degraded - do not stop exactly upon |
Beta Was this translation helpful? Give feedback.
-
I can answer about the joints controlled by 2FOC boards (thus not regarding the fingers), where the stopping method is 2 (new reference = encoder reading). |
Beta Was this translation helpful? Give feedback.
-
@ale-git cool thanks 👍 |
Beta Was this translation helpful? Give feedback.
-
All |
Beta Was this translation helpful? Give feedback.
-
Thanks @barbalberto 👍 |
Beta Was this translation helpful? Give feedback.
-
The implementation 2 is already used on MC4 boards. if (_control_mode[axis] == MODE_IMPEDANCE_POS || \
_control_mode[axis] == MODE_POSITION || \
_control_mode[axis] == MODE_IMPEDANCE_VEL || \
_control_mode[axis] == MODE_VELOCITY || \
_control_mode[axis] == MODE_MIXED) \
{ \
_set_vel[axis] = 0; \
_set_acc[axis] = 0; \
_desired_vel[axis] = 0; \
init_trajectory (axis, _position[axis], _position[axis], 1); \
} \ |
Beta Was this translation helpful? Give feedback.
-
Great, thanks @randaz81 |
Beta Was this translation helpful? Give feedback.
The implementation 2 is already used on MC4 boards.