-
Notifications
You must be signed in to change notification settings - Fork 128
Added command to set friction compensation for the torque command #323
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
Changes from 1 commit
28d3d4c
4216ad5
3a636f0
dd2a1e8
3674594
93c920a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -527,6 +527,19 @@ | |
} | ||
} | ||
|
||
bool UrDriver::setFrictionCompensation(const bool friction_compensation) | ||
|
||
{ | ||
if (script_command_interface_->clientConnected()) | ||
{ | ||
return script_command_interface_->setFrictionCompensation(friction_compensation); | ||
urmahp marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
} | ||
else | ||
{ | ||
URCL_LOG_ERROR("Script command interface is not running. Unable to set friction compensation."); | ||
return 0; | ||
} | ||
} | ||
|
||
bool UrDriver::writeKeepalive(const RobotReceiveTimeout& robot_receive_timeout) | ||
{ | ||
vector6d_t* fake = nullptr; | ||
|
Uh oh!
There was an error while loading. Please reload this page.