We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Title says it all. Source code indicates this to be true.
return_type DynamixelHardware::write(const rclcpp::Time & /* time */, const rclcpp::Duration & /* period */) { if (use_dummy_) { for (auto & joint : joints_) { joint.prev_command.position = joint.command.position; joint.state.position = joint.command.position; } return return_type::OK; }
I tried to fix it myself with
if (use_dummy_) { for (auto & joint : joints_) { joint.prev_command.position = joint.command.position; joint.state.position = joint.command.position; joint.prev_command.velocity = joint.command.velocity; joint.state.velocity = joint.command.velocity; }
but no dice.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Title says it all. Source code indicates this to be true.
I tried to fix it myself with
but no dice.
The text was updated successfully, but these errors were encountered: